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.
26 lines
665 B
26 lines
665 B
import React from 'react';
|
|
import { Form, Input, InputNumber, Typography } from 'antd';
|
|
|
|
const Demo: React.FC = () => {
|
|
const [form] = Form.useForm<{ name: string; age: number }>();
|
|
const nameValue = Form.useWatch('name', form);
|
|
|
|
return (
|
|
<>
|
|
<Form form={form} layout="vertical" autoComplete="off">
|
|
<Form.Item name="name" label="Name (Watch to trigger rerender)">
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name="age" label="Age (Not Watch)">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
</Form>
|
|
|
|
<Typography>
|
|
<pre>Name Value: {nameValue}</pre>
|
|
</Typography>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Demo;
|
|
|