import type { ChangeEvent } from 'react' import React, { useState } from 'react' import { Container, Form, Select } from '@toptal/picasso' import { SPACING_4 } from '@toptal/picasso-utils' const Example = () => { const [value, setValue] = useState('') const handleChange = ( event: ChangeEvent<{ name?: string | undefined value: string }> ) => { setValue(event.target.value) } return ( Autofill disabled ) } const OPTIONS = [ { text: 'Belarus', value: 'BY' }, { text: 'Croatia', value: 'HR' }, { text: 'Lithuania', value: 'LU' }, { text: 'Slovakia', value: 'SK' }, { text: 'Ukraine', value: 'UA' }, { text: 'Romania', value: 'RO' }, ] export default Example