Skip to content

Instantly share code, notes, and snippets.

@junaidrahim
Last active March 16, 2020 14:42
Show Gist options
  • Save junaidrahim/5dcbbab5618cb82dc61a508d8554f37c to your computer and use it in GitHub Desktop.
Save junaidrahim/5dcbbab5618cb82dc61a508d8554f37c to your computer and use it in GitHub Desktop.
React Loader Example 1
import React from "react";
import Loader from "react-loader-spinner";
const App = () => {
return (
<div>
<Loader
type="Puff"
color="#00BFFF"
height={100}
width={100}
/>
</div>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment