import React from 'react'; import { storiesOf } from '@storybook/react-native'; import { withKnobs } from '@storybook/addon-knobs'; import Wrapper from './../../Wrapper'; import { DefaultLink, ExternalLink, CustomOnClick, StyledLink, CompositeLink, } from './example'; storiesOf('Link', module) .addDecorator(withKnobs) .addDecorator((getStory: any) => {getStory()}) .add('Default Link', () => ) .add('External Link', () => ) .add('Underlined False Link', () => ) .add('Custom Function onPress Link', () => ) .add('Composite Link Example', () => );