Created
December 29, 2020 12:29
-
-
Save naveedahmed986/174db23eb0b0c9974385179de9c94d0f to your computer and use it in GitHub Desktop.
react-loading-overlay import
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 LoadingOverlay from 'react-loading-overlay' | |
import './App.css'; | |
function App() { | |
return ( | |
<LoadingOverlay | |
active={true} | |
spinner | |
text='Loading...' | |
> | |
<div className="App"> | |
</div> | |
</LoadingOverlay> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment