This commit is contained in:
2026-04-07 14:23:09 +08:00
commit 787a10ce5d
148 changed files with 45241 additions and 0 deletions

10
src/loading.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { Skeleton } from 'antd';
type LoadingProps = {
padding?: string;
};
const Loading: React.FC<LoadingProps> = ({ padding = '24px 40px' }) => (
<Skeleton style={{ padding }} active />
);
export default Loading;