import React from 'react'; import { Input, Box } from 'native-base'; export const Example = () => { const [value, setValue] = React.useState(''); const handleChange = (text: string) => setValue(text); return ( ); };