--- 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'; import React from 'react'; let acc = 0; const App: React.FC = () => { const [form] = Form.useForm(); return (
{ () => acc++ // return
{JSON.stringify(form.getFieldsValue(), null, 2)}
; }
); }; export default App; ```