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