ant-design/components/drawer/demo/basic.md

54 lines
844 B
Markdown
Raw Normal View History

2018-05-23 10:56:37 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
## zh-CN
2018-05-23 15:52:49 +08:00
第一个抽屉。
2018-05-23 10:56:37 +08:00
## en-US
2018-05-23 11:13:50 +08:00
Basic drawer.
2018-05-23 10:56:37 +08:00
```jsx
import { Drawer, Button } from 'antd';
class App extends React.Component {
state = { visible: false };
showDrawer = () => {
this.setState({
visible: true,
});
};
onClose = () => {
this.setState({
visible: false,
});
};
render() {
return (
<div>
<Button type="primary" onClick={this.showDrawer}>
Open
</Button>
<Drawer
title="Basic Drawer"
width={400}
onClose={this.onClose}
visible={this.state.visible}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Drawer>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
```