--- order: 99 title: zh-CN: Dep Debug en-US: Dep Debug debug: true --- ## zh-CN Buggy! ## en-US Buggy! ```tsx import { Form, Input } from 'antd'; let acc = 0; const Demo = () => { const [form] = Form.useForm(); return (
{() => { return acc++; // return
{JSON.stringify(form.getFieldsValue(), null, 2)}
; }}
); }; ReactDOM.render(, mountNode); ```