mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
19 lines
319 B
Plaintext
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>
|
|
``` |