/* eslint-disable react/require-default-props */ import { FC } from "react"; import { Box } from "@mui/material"; import { useAppContext } from "./AppProvider"; interface PageHeaderProps { backgroundColor: string; sx?: any; } export const PageHeader: FC = ({ backgroundColor, sx = {}, children, }: any) => { const { colors: { white }, } = useAppContext(); return ( {children} ); };