1.0.1 • Published 7 years ago

react-trope-loader v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

react-trope-loader

a minimal, animated loading component for react
based on the iconic sims loading screen

install

npm install react-trope-loader

npm.io

usage

to use the trope loader animation, import as you would any react component wherever a loading animation is needed

import { Component } from 'react'
import Loader from 'react-trope-loader'

export default class extends Component {
  render () {
    return (
      <div>
        <Loader />
      </div>
    )
  }
}