mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import * as React from 'react';
|
|
import { View } from 'react-native';
|
|
import { TextField } from 'react-native-material-textfield';
|
|
|
|
const Example = () => (
|
|
<View>
|
|
<TextField
|
|
label="Example"
|
|
multiline
|
|
placeholder="Text when field is empty"
|
|
value="Initial value"
|
|
style={{ fontSize: 10 }}
|
|
/>
|
|
</View>
|
|
);
|