import { Typography, useTheme } from "@mui/material"; import { ReactNode } from "react"; interface Props { children: ReactNode; } export default function CustomHeader({ children }: Props) { const theme = useTheme(); return ( {children} ); }