import { Box, CircularProgress, Stack } from "@mui/material";
import React from 'react';
import { useTranslation } from "react-i18next";
export const LoadingWidget = () => {
const [t] = useTranslation();
return (
{t('loading')}
);
};
export const LoadingPlaceholder = () =>
;
export const LoadingProgressIcon = () => ;