mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 20:49:14 +08:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
|
import React from 'react';
|
||
|
import { SmileOutlined } from '@ant-design/icons';
|
||
|
import { Button, Result } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Result
|
||
|
icon={<SmileOutlined />}
|
||
|
title="Great, we have done all the operations!"
|
||
|
extra={<Button type="primary">Next</Button>}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|