Skip to content
This repository was archived by the owner on Feb 26, 2022. It is now read-only.

nathanhoad/react-loading-animation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Loading Animation

A simple loading component to show a colorful animated spinner.

Usage

const Loading = require('react-loading-animation');

You can either render the component directly (with no props) or render it as a parent of other components and pass in isLoading as a prop:

const ListOfThings = ({ isFetching, things }) => {
    if (isFetching && things.size() == 0) return <Loading />;
    
    return (
        <ul>
            ...
        </ul>
    );
}

or

const ListOfThings = ({ isFetching, things }) => {
    return (
        <Loading isLoading={isFetching && things.size() == 0}>
            <ul>
                ...
            </ul>
        </Loading>
    );
}

Thanks

This component is based on the work at https://codepen.io/jczimm/pen/vEBpoL

About

A pretty loading spinner based on Google's colorful spinner animation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •