import * as React from 'react' import { storiesOf } from '@storybook/react' import { withTheme } from 'utils' import Box from '.' const stories = storiesOf('Box', module) stories.add('default', withTheme(() => { return (
Some text in box Some text in box Some text in box
) }))