import React from 'react'; import { storiesOf } from '@storybook/react-native'; import Button from '.'; const buttonProps = { title: 'Press me!', type: 'primary', onPress: () => {}, testID: 'testButton', fontSize: 16, style: { padding: 10, justifyContent: 'center' } }; const stories = storiesOf('Button', module); stories.add('primary button', () =>