mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
26 lines
541 B
JavaScript
26 lines
541 B
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
storiesOf('Addons|Storyshots', module)
|
|
.add('text', () => <div>This is a test</div>)
|
|
.add('table', () => (
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>name</th>
|
|
<th>type</th>
|
|
<th>default</th>
|
|
<th>description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>MyName</td>
|
|
<td>MyType</td>
|
|
<td>MyDefault</td>
|
|
<td>MyDesc</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
));
|