UNPKG

@uiw/react-native

Version:
12 lines 254 B
import React from 'react'; import { TextInput } from 'react-native'; const Input = ({ value, onChange, ...others }) => { return <TextInput value={value} onChangeText={value => { onChange?.(value); }} {...others} />; }; export default Input;