import React from 'react' import { Form, Grid, Select, Input } from '@toptal/picasso' const Example = () => (
Country
) const OPTIONS = [ { text: 'Belarus', value: 'BY' }, { text: 'Croatia', value: 'HR' }, { text: 'Lithuania', value: 'LU' }, { text: 'Slovakia', value: 'SK' }, { text: 'Ukraine', value: 'UA' }, ] export default Example