--- order: 999 title: zh-CN: 在 Form 中 Debug en-US: Debug in Form debug: true --- ```tsx import { SearchOutlined } from '@ant-design/icons'; import { AutoComplete, Button, Form, Input, TreeSelect } from 'antd'; import React from 'react'; const formItemLayout = { labelCol: { xs: { span: 24 }, sm: { span: 8 }, }, wrapperCol: { xs: { span: 24 }, sm: { span: 16 }, }, }; const App: React.FC = () => (
} /> } />
); export default App; ```