diff --git a/ui/src/components/table/story.js b/ui/src/components/table/story.js index 5bc35e02..3afc85ff 100644 --- a/ui/src/components/table/story.js +++ b/ui/src/components/table/story.js @@ -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', () => ( @@ -76,12 +48,4 @@ storiesOf('Table', module) - )) - .add('Table New', () => ( - - - ));