import { Typography } from "@mui/material"; import { ReactNode } from "react"; interface DashboardCardProps { title: ReactNode; children?: ReactNode; } const DashboardCard = (props: DashboardCardProps) => { const { children, title } = props; return (
{title} {children}
); }; export { DashboardCard };