import { Box, Typography } from "@mui/material"; import { useTranslation } from "../../contexts/I18nContext"; const AbstractLoader = () => { const { t } = useTranslation(); return ( {t("outcome.abstract")} {t("loaders.loadingAbstract")} ); }; export default AbstractLoader;