0.0.4 • Published 6 years ago

react-fullscreen-loading v0.0.4

Weekly downloads
311
License
MIT
Repository
github
Last release
6 years ago

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;