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