import React, { FC } from 'react'; import { BoxProps } from '../../types'; import * as S from './styles'; export const Page: FC = ({ children, ...props }) => ( {children} ); Page.defaultProps = { height: '100vh', width: '100vw', };