mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
|
import React from 'react';
|
||
|
import { Skeleton } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Skeleton avatar paragraph={{ rows: 4 }} />;
|
||
|
|
||
|
export default App;
|