mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
|
import React from 'react';
|
||
|
import { Alert } from 'antd';
|
||
|
|
||
|
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;
|