mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 04:25:29 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { styles } from '../helpers';
|
|
import { TextInput } from 'react-native';
|
|
|
|
const TextInputAutoFocusExample = () => <TextInput autoFocus={true} style={styles.default} />;
|
|
|
|
export default TextInputAutoFocusExample;
|