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 ( Reset disabled ) } const OPTIONS = [ { value: '1', text: 'Option 1' }, { value: '2', text: 'Option 2' }, { value: '3', text: 'Option 3' }, { value: '4', text: 'Option 4' }, ] export default Example