mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:39:51 +08:00
1d76fe94fa
Co-authored-by: afc163 <afc163@gmail.com>
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { Button, Flex, Form, Input, Select } from 'antd';
|
|
|
|
const App = () => {
|
|
const [form] = Form.useForm();
|
|
|
|
return (
|
|
<Form
|
|
form={form}
|
|
scrollToFirstError={{ behavior: 'instant', block: 'end', focus: true }}
|
|
style={{ paddingBlock: 32 }}
|
|
labelCol={{ span: 6 }}
|
|
wrapperCol={{ span: 14 }}
|
|
>
|
|
<Form.Item wrapperCol={{ offset: 6 }}>
|
|
<Button onClick={() => form.scrollToField('bio')}>Scroll to Bio</Button>
|
|
</Form.Item>
|
|
|
|
<Form.Item name="username" label="UserName" rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
|
|
<Form.Item label="Occupation" name="occupation">
|
|
<Select
|
|
options={[
|
|
{ label: 'Designer', value: 'designer' },
|
|
{ label: 'Developer', value: 'developer' },
|
|
{ label: 'Product Manager', value: 'product-manager' },
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
|
|
<Form.Item name="motto" label="Motto">
|
|
<Input.TextArea rows={4} />
|
|
</Form.Item>
|
|
|
|
<Form.Item name="bio" label="Bio" rules={[{ required: true }]}>
|
|
<Input.TextArea rows={6} />
|
|
</Form.Item>
|
|
|
|
<Form.Item wrapperCol={{ offset: 6 }}>
|
|
<Flex gap="small">
|
|
<Button type="primary" htmlType="submit">
|
|
Submit
|
|
</Button>
|
|
<Button danger onClick={() => form.resetFields()}>
|
|
Reset
|
|
</Button>
|
|
</Flex>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|