ant-design/components/alert/demo/smooth-closed.md

51 lines
746 B
Markdown
Raw Normal View History

---
order: 7
title:
zh-CN: 平滑地卸载
en-US: Smoothly Unmount
---
## zh-CN
2018-09-16 18:36:17 +08:00
平滑、自然的卸载提示。
## en-US
Smoothly and unaffectedly unmount Alert.
````jsx
import { Alert } from 'antd';
class App extends React.Component {
state = {
visible: true,
}
2018-06-27 15:55:04 +08:00
handleClose = () => {
this.setState({ visible: false });
}
2018-06-27 15:55:04 +08:00
render() {
return (
<div>
{
this.state.visible ? (
<Alert
message="Alert Message Text"
type="success"
closable
afterClose={this.handleClose}
/>
) : null
}
<p>placeholder text here</p>
</div>
);
}
}
ReactDOM.render(
2018-06-27 15:55:04 +08:00
<App />,
mountNode);
````