mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
|
import React from 'react';
|
||
|
import { Skeleton } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Skeleton />;
|
||
|
|
||
|
export default App;
|