mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { Alert } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Alert message="Success Tips" type="success" showIcon />
|
|
<br />
|
|
<Alert message="Informational Notes" type="info" showIcon />
|
|
<br />
|
|
<Alert message="Warning" type="warning" showIcon closable />
|
|
<br />
|
|
<Alert message="Error" type="error" showIcon />
|
|
<br />
|
|
<Alert
|
|
message="Success Tips"
|
|
description="Detailed description and advice about successful copywriting."
|
|
type="success"
|
|
showIcon
|
|
/>
|
|
<br />
|
|
<Alert
|
|
message="Informational Notes"
|
|
description="Additional description and information about copywriting."
|
|
type="info"
|
|
showIcon
|
|
/>
|
|
<br />
|
|
<Alert
|
|
message="Warning"
|
|
description="This is a warning notice about copywriting."
|
|
type="warning"
|
|
showIcon
|
|
closable
|
|
/>
|
|
<br />
|
|
<Alert
|
|
message="Error"
|
|
description="This is an error message about copywriting."
|
|
type="error"
|
|
showIcon
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|