import { Paper, Typography } from "@mui/material"; type LoadingStateProps = { message: string; }; export default function LoadingState({ message }: LoadingStateProps) { return ( {message} ); }