const React = require('react');
const {
storiesOf,
// action,
// linkTo
} = require('@kadira/storybook');
const {
Base,
Button,
Container,
Checkbox,
Row,
Column,
Avatar,
Widget
} = require('../src/');
const styles = {
base: {
backgroundColor: '#FFEBEE'
},
row: {
backgroundColor: '#EF5350'
},
column: {
backgroundColor: '#B71C1C',
textAlign: 'center',
color: 'white'
}
};
storiesOf('Grid', module)
.add('Row and Column', () => (
1
2
3
));
const profile =
'https://pbs.twimg.com/profile_images/' +
'641289584580493312/VBfsPlff_400x400.jpg';
storiesOf('Avatar', module)
.add('Avatar Picture', () => (
))
.add('Avatar Text', () => (
));
storiesOf('Button', module)
.add('With text', () => (
)).add('Secondary', () => (
)).add('Disabled', () => (
));
storiesOf('Checkbox', module)
.add('Default', () => (
))
.add('Checked', () => (
))
.add('Disabled', () => (
));
storiesOf('Widget', module)
.add('single', () => (
Some text
))