Easy to use loading animations for React projects. Uses SVG animations from Brent Jackson's loading project.
npm install react-loading
http://cezary.github.io/react-loading/
- blank
- balls
- bars
- bubbles
- cubes
- cylon
- spin
- spinningBubbles
- spokes
var React = require('react');
var Loading = require('react-loading');
var Component = React.createClass({
render: function() {
return (
<Loading type='balls' color='#e3e3e3' />
);
}
});
MIT