mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-13 16:48:08 +08:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
![]() |
import React from 'react';
|
||
|
import { Alert } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Alert message="Success Text" type="success" />;
|
||
|
|
||
|
export default App;
|