Files
react-native-web/packages/website/storybook/1-components/TextInput/examples/PropEditable.js
Nicolas Gallagher a8e5d43db5 Move 'website' to 'packages/website'
Keep all workspaces in the 'packages' directory.
2018-06-03 11:32:55 -07:00

22 lines
485 B
JavaScript

/**
* @flow
*/
import React from 'react';
import { styles } from '../helpers';
import { TextInput, View } from 'react-native';
const TextInputEditableExample = () => (
<View>
<TextInput defaultValue="uneditable text input" editable={false} style={styles.textinput} />
<TextInput
defaultValue="uneditable multiline text input"
editable={false}
multiline={true}
style={styles.multiline}
/>
</View>
);
export default TextInputEditableExample;