"use client"; import { useI18n } from "@/lib/i18n/useI18n"; import type { RecapDowntimeTopRow } from "@/lib/recap/types"; type Props = { rows: RecapDowntimeTopRow[]; }; export default function RecapDowntimeTop({ rows }: Props) { const { t } = useI18n(); return (