storybook/docs/snippets/react/table-story-fully-customize-controls.mdx.mdx
2021-02-23 00:26:03 +00:00

19 lines
319 B
Plaintext

```md
<!-- Table.stories.mdx -->
export const TableStory = ({ data, ...args }) => (
<Table {...args} >
{data.map(row => (<TR>{row.map(item => <TD>{item}</TD>}</TR>))}
</Table>
);
<Story
name="Numeric"
args={{
data: [[1, 2, 3], [4, 5, 6]],
size: 'large',
}}
>
{TableStory.bind({})}
</Story>
```