mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 14:59:35 +08:00
b9a6b7b578
* demo: update demo * add form * clear * add Select * add * fix style * fix style * fix * revert
27 lines
665 B
TypeScript
27 lines
665 B
TypeScript
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;
|