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