storybook/docs/snippets/angular/table-story-fully-customize-controls.mdx.mdx
2021-08-05 18:51:23 +01:00

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>
```