import { Box } from 'theme-ui' interface PageProps { isCurrentTab: boolean title: string children: React.ReactNode } const Page = ({ isCurrentTab, title, children }: PageProps) => { return ( {title} {children} ) } export default Page