import React from 'react'; import { storiesOf } from '@storybook/react-native'; import { withKnobs } from '@storybook/addon-knobs'; import Wrapper from './../../Wrapper'; import { Example as ZStack } from './example'; import { Example as CenterStack } from './CenterStack'; storiesOf('ZStack', module) .addDecorator(withKnobs) .addDecorator((getStory: any) => {getStory()}) .add('Basic ZStack', () => ) .add('ZStack items centered', () => );