mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
33 lines
525 B
Plaintext
33 lines
525 B
Plaintext
```md
|
|
<!-- Table.stories.mdx -->
|
|
|
|
import { Story } from '@storybook/addon-docs';
|
|
|
|
export const TableStory = (args) => ({
|
|
props: args,
|
|
template: `
|
|
<table>
|
|
<tbody>
|
|
<tr *ngFor="let row of data; let i=index">
|
|
<td *ngFor="let col of row; let j=index">
|
|
{{data[i][j]}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
`,
|
|
});
|
|
|
|
<Story
|
|
name="Numeric"
|
|
args={{
|
|
data: [
|
|
[1, 2, 3],
|
|
[4, 5, 6],
|
|
],
|
|
size: "large",
|
|
}}
|
|
>
|
|
{TableStory.bind({})}
|
|
</Story>
|
|
``` |