mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 12:35:12 +00:00
17 lines
358 B
JavaScript
17 lines
358 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { styles } from '../helpers';
|
|
import { TextInput, View } from 'react-native';
|
|
|
|
const TextInputMultilineExample = () => (
|
|
<View>
|
|
<TextInput multiline={true} style={styles.multiline} />
|
|
<TextInput multiline={true} style={styles.multiline} />
|
|
</View>
|
|
);
|
|
|
|
export default TextInputMultilineExample;
|