mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-19 21:15:17 +00:00
Move 'website' to 'packages/website'
Keep all workspaces in the 'packages' directory.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { styles } from '../helpers';
|
||||
import { TextInput, View } from 'react-native';
|
||||
|
||||
const TextInputEditableExample = () => (
|
||||
<View>
|
||||
<TextInput defaultValue="uneditable text input" editable={false} style={styles.textinput} />
|
||||
<TextInput
|
||||
defaultValue="uneditable multiline text input"
|
||||
editable={false}
|
||||
multiline={true}
|
||||
style={styles.multiline}
|
||||
/>
|
||||
</View>
|
||||
);
|
||||
|
||||
export default TextInputEditableExample;
|
||||
Reference in New Issue
Block a user