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.
56 lines
1.2 KiB
56 lines
1.2 KiB
import React, { useState } from 'react';
|
|
import { Button, Drawer, Space } from 'antd';
|
|
import type { DrawerProps } from 'antd/es/drawer';
|
|
|
|
const App: React.FC = () => {
|
|
const [open, setOpen] = useState(false);
|
|
const [size, setSize] = useState<DrawerProps['size']>();
|
|
|
|
const showDefaultDrawer = () => {
|
|
setSize('default');
|
|
setOpen(true);
|
|
};
|
|
|
|
const showLargeDrawer = () => {
|
|
setSize('large');
|
|
setOpen(true);
|
|
};
|
|
|
|
const onClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Space>
|
|
<Button type="primary" onClick={showDefaultDrawer}>
|
|
Open Default Size (378px)
|
|
</Button>
|
|
<Button type="primary" onClick={showLargeDrawer}>
|
|
Open Large Size (736px)
|
|
</Button>
|
|
</Space>
|
|
<Drawer
|
|
title={`${size} Drawer`}
|
|
placement="right"
|
|
size={size}
|
|
onClose={onClose}
|
|
open={open}
|
|
extra={
|
|
<Space>
|
|
<Button onClick={onClose}>Cancel</Button>
|
|
<Button type="primary" onClick={onClose}>
|
|
OK
|
|
</Button>
|
|
</Space>
|
|
}
|
|
>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
</Drawer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|