react-fullscreen-loading
v0.0.4
Published
Minimal fullscreen loading for React
Downloads
2,469
Maintainers
Readme
react-fullscreen-loading
Minimal fullscreen loading for react
Installation
npm install --save react-fullscreen-loading
Example
import React from 'react';
import Loading from 'react-fullscreen-loading';
class App extends React.Component {
render() {
return(
<Loading loading background="#2ecc71" loaderColor="#3498db" />
)
}
}
export default App;