mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 08:19:37 +08:00
644 B
644 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
共有四种样式 success
、info
、warning
、error
。
en-US
There are 4 types of Alert: success
, info
, warning
, error
.
import { Alert } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Alert message="Success Text" type="success" />
<Alert message="Info Text" type="info" />
<Alert message="Warning Text" type="warning" />
<Alert message="Error Text" type="error" />
</>
);
export default App;