import type { ReactNode } from "react"; import { Typography } from "@mui/joy"; interface PageHeaderProps { title: string; subtitle?: string; actions?: ReactNode; } export const PageHeader = ({ title, subtitle, actions }: PageHeaderProps) => (
{title} {subtitle && ( {subtitle} )}
{actions &&
{actions}
}
);