import React, { FC, PropsWithChildren } from 'react'; import { StackProps, VStack } from '@chakra-ui/react'; type PageSectionProps = StackProps & PropsWithChildren; export const PageSection: FC = ({ children, ...restProps }) => { return ( {children} ); };