This commit is contained in:
2026-01-14 18:02:47 +01:00
parent 2c41f5619b
commit 558bcbd946
68 changed files with 5490 additions and 4032 deletions

View File

@@ -0,0 +1,14 @@
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 (
<View style={styles.section}>
<Text style={styles.sectionTitle}>{props.title}</Text>
{props.children}
</View>
);
}