import React from 'react';
import { StyleSheet } from 'react-native';
import { storiesOf } from '@storybook/react-native';
import { TextField } from '@aws-amplify/ui-react-native/dist/primitives';
const styles = StyleSheet.create({
container: {
width: '50%',
},
errorMessage: {
color: 'red',
},
});
storiesOf('TextField', module)
.add('default', () => )
.add('placeholder', () => (
))
.add('with label', () => )
.add('password', () => (
))
.add('phone', () => (
))
.add('with error', () => (
))
.add('disabled', () => (
));