mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
import FileContentLoading from './file-content-skeleton';
|
|
|
|
export default function Loading() {
|
|
const num = Array(3).fill(null);
|
|
|
|
return (
|
|
<>
|
|
{num.map((_, i) => (
|
|
<FileContentLoading key={i} />
|
|
))}
|
|
</>
|
|
);
|
|
}
|