import React, { useState } from 'react' import { Select, Container } from '@toptal/picasso' import { SPACING_4 } from '@toptal/picasso-utils' const Example = () => { const [value, setValue] = useState('') const handleChange = (event: React.ChangeEvent<{ value: string }>) => { setValue(event.target.value) } return (