Files
DefectingCat.github.io/app/blog/loading.tsx
DefectingCat b19914b68a format code
remove end of line
2023-05-17 14:58:22 +08:00

16 lines
241 B
TypeScript

import PostCardLoading from './post-card-loading';
const Loading = () => {
const num = Array(4).fill(1);
return (
<>
{num.map((_, i) => (
<PostCardLoading key={i} />
))}
</>
);
};
export default Loading;