mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
37 lines
668 B
Plaintext
37 lines
668 B
Plaintext
```js
|
|
// Table.stories.js | Table.stories.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Table } from './Table';
|
|
import { TD } from './TableDataCell';
|
|
import { TR } from './TableRow';
|
|
|
|
export default {
|
|
component: Table,
|
|
};
|
|
|
|
export const TableStory = {
|
|
args: {
|
|
//👇 This arg is for the story component
|
|
data: [
|
|
[1, 2, 3],
|
|
[4, 5, 6],
|
|
],
|
|
//👇 The remaining args get passed to the `Table` component
|
|
size: 'large',
|
|
},
|
|
render: ({ data, ...args }) => (
|
|
<Table {...args}>
|
|
{data.map((row) => (
|
|
<TR>
|
|
{row.map((item) => (
|
|
<TD>{item}</TD>
|
|
))}
|
|
</TR>
|
|
))}
|
|
</Table>
|
|
),
|
|
};
|
|
```
|