mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
import PostCardLoading from 'components/pages/blog/post-card-loading';
|
|
|
|
const Loading = () => {
|
|
const num = Array(4).fill(1);
|
|
|
|
return (
|
|
<>
|
|
{num.map((_, i) => (
|
|
<PostCardLoading key={i} />
|
|
))}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Loading;
|