Files
DefectingCat.github.io/app/gists/loading.tsx
2023-08-17 17:15:46 +08:00

14 lines
261 B
TypeScript

import FileContentLoading from 'components/pages/gists/file-content-skeleton';
export default function Loading() {
const num = Array(3).fill(null);
return (
<>
{num.map((_, i) => (
<FileContentLoading key={i} />
))}
</>
);
}