import { Button, Input, Select, Space } from 'antd'; import React from 'react'; const { Search } = Input; const options = [ { value: 'zhejiang', label: 'Zhejiang', }, { value: 'jiangsu', label: 'Jiangsu', }, ]; const App: React.FC = () => ( ); export default App;