react-fullscreen-loading

Minimal fullscreen loading for React

Usage no npm install needed!

<script type="module">
  import reactFullscreenLoading from 'https://cdn.skypack.dev/react-fullscreen-loading';
</script>

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;