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