import { Box, Stack, Typography } from "@mui/material"; import type { ReactNode } from "react"; interface Props { title: string; subtitle?: string; action?: ReactNode; } export default function PageHeader({ title, subtitle, action }: Props) { return ( {title} {subtitle && ( {subtitle} )} {action} ); }