import React from 'react'; import { Button, Form, Input, Select, Space, Tooltip, Typography } from 'antd'; const { Option } = Select; const App: React.FC = () => { const onFinish = (values: any) => { console.log('Received values of form: ', values); }; return (