mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
|
import React from 'react';
|
||
|
import { Watermark } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Watermark content="Ant Design">
|
||
|
<div style={{ height: 500 }} />
|
||
|
</Watermark>
|
||
|
);
|
||
|
|
||
|
export default App;
|