Last active
March 16, 2020 14:42
-
-
Save junaidrahim/5dcbbab5618cb82dc61a508d8554f37c to your computer and use it in GitHub Desktop.
React Loader Example 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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