mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-24 04:25:27 +08: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;
|