import React from 'react';
import { Grid }  from '../src';
export default {
  title: 'Search',
  component: Grid,
} as any;

export const All = () => 
<div style={{ maxWidth: "500px", margin: "auto"}}>
  <Grid>Heading</Grid>
</div>;


