import { FC, PropsWithChildren } from "react"; import { Box } from "@mui/material"; import { useAppContext } from "./AppProvider"; type AboutBoxProps = PropsWithChildren<{ backgroundColor: string; }>; export const AboutBox: FC = ({ backgroundColor, children, }: any) => { const { colors: { white }, } = useAppContext(); return ( {children} ); };