Browse Source

feat: add loading component with skeleton animation (#11505)

pull/11512/head
afc163 9 months ago
committed by GitHub
parent
commit
c12308d62b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      src/loading.tsx

5
src/loading.tsx

@ -0,0 +1,5 @@
import { Skeleton } from 'antd';
const Loading: React.FC = () => <Skeleton style={{ margin: '24px 40px' }} active />;
export default Loading;
Loading…
Cancel
Save