mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-12 08:53:25 +08:00
16 lines
354 B
JavaScript
16 lines
354 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;
|