import React from 'react'; import styled from 'react-emotion'; import {storiesOf} from '@storybook/react'; import {withInfo} from '@storybook/addon-info'; import {action} from '@storybook/addon-actions'; import {boolean} from '@storybook/addon-knobs'; import Button from 'app/components/button'; import DropdownButton from 'app/components/dropdownButton'; const Item = styled('span')` padding: 12px; `; const Section = styled('div')` margin-bottom: 32px; `; // eslint-disable-next-line storiesOf('UI|Buttons', module) .add( 'overview', withInfo({ text: 'An overview of all the different buttons and states', propTablesExclude: [Item, Section], })(() => (