import React from 'react'; import { StyleSheet, Text } from 'react-native'; import { action } from '@storybook/addon-actions'; import { storiesOf } from '@storybook/react-native'; import { Button } from '@aws-amplify/ui-react-native/dist/primitives'; storiesOf('Button', module) .add('default', () => ) .add('with text', () => ( )) .add('variants', () => ( <> )) .add('with emoji', () => ( )) .add('disabled', () => ( <> )) .add('styles', () => ( )); const styles = StyleSheet.create({ container: { backgroundColor: 'blue', borderRadius: 5, padding: 10, }, whiteText: { color: 'white', fontWeight: '900', }, });