const React = require('react'); const { storiesOf, action, linkTo } = require('@kadira/storybook'); const { Base, Container, 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', () => ( ));