Files
react-native-web/docs/storybook/1-components/TextInput/examples/PropSecureTextEntry.js
2017-09-10 10:35:07 -07:00

14 lines
326 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;