import { Stack, Typography } from "@mui/material"; import React from "react"; export interface EmptyStateProps { message: string; } export const EmptyState: React.FC = ({ message }) => { return ( {message} ); };