// You can live edit this code below the import statements import React from 'react'; import Spin from 'react-reveal/Spin'; class SpinExample extends React.Component { render() { return ( <div> <Spin> <h1>React Reveal</h1> </Spin> </div> ); } } export default SpinExample;