mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-12 11:55:23 +08:00
9f2fb20358
* chore: unique color * test: update snapshot
19 lines
433 B
TypeScript
19 lines
433 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"
|
|
imageStyle={{ height: 60 }}
|
|
description={
|
|
<Typography.Text>
|
|
Customize <a href="#API">Description</a>
|
|
</Typography.Text>
|
|
}
|
|
>
|
|
<Button type="primary">Create Now</Button>
|
|
</Empty>
|
|
);
|
|
|
|
export default App;
|