Grid
Last updated
Last updated
import { Grid } from 'components/lib';
function MyComponent({ ...props }){
return (
<Grid max={ 4 }>
<div>Item 1</div>
<div>Item 2</div>
<div>Item 3</div>
<div>Item 4</div>
</Grid>
);
}