--- order: 9999 title: zh-CN: 测试特殊 col 24 用法 en-US: Test col 24 usage debug: true --- ## zh-CN See issue [#32980](https://github.com/ant-design/ant-design/issues/32980). ## en-US See issue [#32980](https://github.com/ant-design/ant-design/issues/32980). ```tsx import { Form, Input, Button } from 'antd'; const Demo = () => { const onFinish = (values: any) => { console.log('Success:', values); }; const onFinishFailed = (errorInfo: any) => { console.log('Failed:', errorInfo); }; return (