import { Box, Typography, LinearProgress } from "@mui/material"; import { FC } from "react"; interface LoadingScreenProps { loadingText?: string; } export const LoadingScreen: FC = ({ loadingText }) => { return ( {loadingText} ); };