removing old storybook story

This commit is contained in:
Alex Windett 2017-01-20 13:33:37 +00:00
parent 186353111b
commit d80933c9dc
1 changed files with 2 additions and 38 deletions

View File

@ -10,39 +10,11 @@ const _table = require('./');
const {
Table,
TableHead,
TableItem,
TableBody,
TableRow,
TableItem
TableRow
} = _table;
const columns = [{
title: 'Memeber',
dataID: 'member',
dataKey: 'member',
width: ''
}, {
title: 'Status',
dataID: 'status',
dataKey: 'status',
width: ''
}, {
title: 'Role',
dataID: 'role',
dataKey: 'role',
width: ''
}, {
title: '',
dataID: 'delete',
dataKey: 'delete',
width: ''
}];
const data = [{
name: 'Nicola',
status: 'Active',
role: 'Ownder',
}];
storiesOf('Table', module)
.add('Table', () => (
<Base>
@ -76,12 +48,4 @@ storiesOf('Table', module)
</TableBody>
</Table>
</Base>
))
.add('Table New', () => (
<Base>
<Table
columns={columns}
data={data}
/>
</Base>
));