import { SectionProps } from '@/components/layouts/Section/types'; import { tw } from '@/theme'; import { mergeStyles } from '@/utils/merge-styles'; import { View } from '@react-pdf/renderer'; import { FunctionComponent } from 'react'; export const Section: FunctionComponent = ({ children, styles = [] }) => ( {children} );