import React from 'react' import {Box} from '@chakra-ui/react' import {CoverPage, CoverPageProps} from './Cover' type ReportProps = { coverPage: CoverPageProps } export const Report = ({coverPage}: ReportProps) => ( )