import { TextInput } from 'components';
const Example = () => {
const [value, setValue] = React.useState<string>('');
return (
<TextInput
value={value}
onValue={setValue}
placeholder="Type something..."
className="text-lg sm:text-base"
/>
);
};
render(<Example />);