mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
|
import React from 'react';
|
||
|
import { Button, message } from 'antd';
|
||
|
|
||
|
const info = () => {
|
||
|
message.info('This is a normal message');
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Button type="primary" onClick={info}>
|
||
|
Display normal message
|
||
|
</Button>
|
||
|
);
|
||
|
|
||
|
export default App;
|