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