import { useTranslation } from "react-i18next"; export default function Loading() { const {t} = useTranslation(); return
{t("Loading")}
; }