mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +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;
|