ant-design/components/alert/demo/style.md
偏右 2beb28518c
test: Alert and AutoComplete test coverage (#24004)
* 🔨 refactor demo code style

* refactor alert code and fix test cov

* add test case for AutoComplete

* fix test
2020-05-09 19:32:02 +08:00

597 B

order title
1
zh-CN en-US
四种样式 More types

zh-CN

共有四种样式 successinfowarningerror

en-US

There are 4 types of Alert: success, info, warning, error.

import { Alert } from 'antd';

ReactDOM.render(
  <>
    <Alert message="Success Text" type="success" />
    <Alert message="Info Text" type="info" />
    <Alert message="Warning Text" type="warning" />
    <Alert message="Error Text" type="error" />
  </>,
  mountNode,
);