const React = require('react');
const {
storiesOf,
action,
linkTo
} = require('@kadira/storybook');
const {
Base,
Button,
Container,
Checkbox,
Row,
Column,
Avatar
} = 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
));
storiesOf('Avatar', module)
.add('Avatar Picture', () => (
))
.add('Avatar Text', () => (
));
storiesOf('Button', module)
.add('With text', () => (
)).add('Secondary', () => (
)).add('Disabled', () => (
));
storiesOf('Checkbox', module)
.add('Default', () => (
Checkbox
))
.add('Checked', () => (
Checkbox Checked
))
.add('Disabled', () => (
Checkbox Disabled
));