Version: 0.0.2
Last Updated: Unknown
Stock grid to wrap around different item components.
import useCopy from './state/copy'; import Item from './components/ItemContentful/typed'; import Grid from './components/Grid/typed'; function App() { const copy = useCopy(); return ( <div className="App"> <div className="container content"> <Grid items={copy.items} component={Item} twoTwoThree fadeIn fromLeft /> </div> </div> ); }