mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-15 13:38:29 +02:00
18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
import React from 'react';
|
|
import { Button, Empty, Typography } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Empty
|
|
image="https://gw.alipayobjects.com/zos/antfincdn/ZHrcdLPrvN/empty.svg"
|
|
styles={{ image: { height: 60 } }}
|
|
description={
|
|
<Typography.Text>
|
|
Customize <a href="#API">Description</a>
|
|
</Typography.Text>
|
|
}
|
|
>
|
|
<Button type="primary">Create Now</Button>
|
|
</Empty>
|
|
);
|
|
|
|
export default App;
|