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