mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-15 13:38:29 +02:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
import React from 'react';
|
|
import { Empty } from 'antd';
|
|
|
|
const App: React.FC = () => <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} />;
|
|
|
|
export default App;
|