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