import { RoomCardSkeleton } from "../../RoomCardSkeleton/RoomCardSkeleton" import styles from "./RoomsContainerSkeleton.module.css" type Props = { count?: number } export function RoomsContainerSkeleton({ count = 4 }: Props) { return (
{Array.from({ length: count }).map((_, index) => ( ))}
) }