import React from 'react'; import { storiesOf } from '@storybook/react-native'; import { withKnobs } from '@storybook/addon-knobs'; import Wrapper from './../../Wrapper'; import Usage from './usage'; import Playground from './Playground'; import CenteringChildren from './centeringChildren'; storiesOf('Container', module) .addDecorator(withKnobs) .addDecorator((getStory: any) => {getStory()}) .add('Playground', () => ) .add('Usage', () => ) .add('CenteringChildren', () => );