import React from 'react'; import { storiesOf, action } from '@kadira/storybook'; import { StyleSheet, TextInput, View } from 'react-native' storiesOf('', module) .add('tbd', () => ( { console.log('TextInput.onBlur', e) }} onChange={(e) => { console.log('TextInput.onChange', e) }} onChangeText={(e) => { console.log('TextInput.onChangeText', e) }} onFocus={(e) => { console.log('TextInput.onFocus', e) }} onSelectionChange={(e) => { console.log('TextInput.onSelectionChange', e) }} /> )) const styles = StyleSheet.create({ textInput: { borderWidth: 1 } })