import React from 'react';
import Grid from './index';

export default {
  title: 'Core/Layout/Grid',
  component: Grid
};

const Template = args => (
  <Grid {...args}>
    <div>left</div>
    <div>right</div>
  </Grid>
);

export const Default = Template.bind({});
Default.args = {
  children: 'Label'
};
