import * as React from 'react' import { withTheme } from 'utils' import { storiesOf } from '@storybook/react' import { withStack } from '@coderbox/hocs' import Stack from '.' import Box from 'Box' import Title from 'Title' import Button from 'Button' const stories = storiesOf('SackView', module) stories.add('simple usage', withTheme( withStack( ({ stack }: any) => { console.log(stack) return (
Stack item 1
Stack item 2
Stack item 3
) } )) )