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