You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
701 B
31 lines
701 B
import React from 'react';
|
|
import { Form, Input } from 'antd';
|
|
|
|
let acc = 0;
|
|
|
|
const App: React.FC = () => {
|
|
const [form] = Form.useForm();
|
|
return (
|
|
<Form
|
|
form={form}
|
|
name="debug"
|
|
initialValues={{ debug1: 'debug1', debug2: 'debug2' }}
|
|
style={{ maxWidth: 600 }}
|
|
>
|
|
<Form.Item noStyle dependencies={['debug1']}>
|
|
{
|
|
() => acc++
|
|
// return <pre>{JSON.stringify(form.getFieldsValue(), null, 2)}</pre>;
|
|
}
|
|
</Form.Item>
|
|
<Form.Item label="debug1" name="debug1">
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item label="debug2" name="debug2">
|
|
<Input />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|