import { useTranslation } from "../utils/i18n"; export default function Loading() { const { t } = useTranslation(); return (
{t("Loading")}
); }