@axeptio/design-system
Version:
Design System for Axeptio
20 lines (16 loc) • 307 B
JSX
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'
};