import React from "react"; import Skeleton, { SkeletonTheme } from "react-loading-skeleton"; import "react-loading-skeleton/dist/skeleton.css"; import { useTranslation } from "react-i18next"; interface TimetableSkeletonProps { rows?: number; } export const TimetableSkeleton: React.FC = ({ rows = 4 }) => { const { t } = useTranslation(); return (
{Array.from({ length: rows }, (_, index) => (
))}
); };