Skip to content

Instantly share code, notes, and snippets.

@naveedahmed986
Created December 29, 2020 12:29
Show Gist options
  • Save naveedahmed986/174db23eb0b0c9974385179de9c94d0f to your computer and use it in GitHub Desktop.
Save naveedahmed986/174db23eb0b0c9974385179de9c94d0f to your computer and use it in GitHub Desktop.
react-loading-overlay import
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