mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
f2b89da945
* refactor: Drawer styles props * chore: add type test case * chore: update snapshot * test: add style jest snapshot * chore: update snapshot * chore: update snapshot * chore: update snapshot * chore: add deprecated warning * fix: scroll area of drawer * chore: fix demo style * chore: update snapshot * chore: update snapshot * refactor: remove unused style code * test: fix test case * test: fix Drawer PurePanel image diff * test: fix Drawer PurePanel image diff * chore: fix demo
45 lines
879 B
TypeScript
45 lines
879 B
TypeScript
import React, { useState } from 'react';
|
|
import { Button, Drawer } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const showDrawer = () => {
|
|
setOpen(true);
|
|
};
|
|
|
|
const onClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={showDrawer}>
|
|
Open
|
|
</Button>
|
|
<Drawer
|
|
title="Drawer without mask"
|
|
placement="right"
|
|
mask={false}
|
|
onClose={onClose}
|
|
open={open}
|
|
styles={{
|
|
mask: {
|
|
width: 333,
|
|
background: 'red',
|
|
borderRadius: 20,
|
|
boxShadow: '-5px 0 5px green',
|
|
overflow: 'hidden',
|
|
},
|
|
}}
|
|
>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
</Drawer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|