Files
the-biergarten-app/archive/next-js-web-app/src/components/Comments/CommentLoadingComponent.tsx
2026-04-20 02:30:25 -04:00

23 lines
520 B
TypeScript

import { FC } from 'react';
import Spinner from '../ui/Spinner';
import CommentLoadingCardBody from './CommentLoadingCardBody';
interface CommentLoadingComponentProps {
length: number;
}
const CommentLoadingComponent: FC<CommentLoadingComponentProps> = ({ length }) => {
return (
<>
{Array.from({ length }).map((_, i) => (
<CommentLoadingCardBody key={i} />
))}
<div className="p-1">
<Spinner size="sm" />
</div>
</>
);
};
export default CommentLoadingComponent;