UNPKG

@axeptio/design-system

Version:
20 lines (16 loc) 307 B
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' };