components/src/Table/Table.stories.tsx
Florian Bouillon 8d7a8c70f0
Updated
Signed-off-by: Avior <github@avior.me>
2021-10-06 17:57:59 +02:00

50 lines
889 B
TypeScript

import { Meta } from '@storybook/react/types-6-0'
import { Settings } from 'lucide-react'
import React from 'react'
import Component from '.'
import Box from '../Box'
export default {
title: 'DZEIO/Table',
component: Component
} as Meta
export const Basic = (args: any) => (
<Box icon={Settings} title="Storage">
<Component {...args}>
<thead>
<tr>
<th>item1</th>
<th>item1</th>
<th>item1</th>
<th>item1</th>
<th>item1</th>
</tr>
</thead>
<tbody>
<tr>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
</tr>
<tr>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
</tr>
<tr>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
<td>item1</td>
</tr>
</tbody>
</Component>
</Box>
)