import * as React from 'react'; import { Text, View } from '@react-pdf/renderer'; import { styles } from '../styles'; export function Section(props: { title: string; children: React.ReactNode }): React.ReactElement { return ( {props.title} {props.children} ); }