import React from 'react'; import { Box } from '@chakra-ui/react'; type PageWrapperProps = { children: React.ReactNode; } export function PageWrapper(props: PageWrapperProps) { const { children } = props; return ( { children } ); }