import React from 'react'; import { SearchOutlined } from '@ant-design/icons'; import { AutoComplete, Button, Form, Input, TreeSelect } from 'antd'; const formItemLayout = { labelCol: { xs: { span: 24 }, sm: { span: 8 }, }, wrapperCol: { xs: { span: 24 }, sm: { span: 16 }, }, }; const App: React.FC = () => (
} /> } />
); export default App;