Files
klz-cables.com/scripts/pdf/react-pdf/components/Section.tsx
2026-01-14 18:02:47 +01:00

15 lines
368 B
TypeScript

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>
);
}