Files
react-native-web/docs/storybook/1-components/TextInput/examples/PropSecureTextEntry.js
2017-06-29 16:15:51 -07:00

18 lines
340 B
JavaScript

/**
* @flow
*/
import React from 'react';
import { styles } from '../helpers';
import { TextInput } from 'react-native';
const TextInputSecureTextEntryExample = () =>
<TextInput
defaultValue="abc"
numberOfLines={2}
secureTextEntry={true}
style={styles.textinput}
/>;
export default TextInputSecureTextEntryExample;