import FormField from "#/components/FormField.tsx"; import type { IHeader } from "#/interfaces.ts"; interface IProps { headers: IHeader; } const CustomHeaders = ({ headers }: IProps) => { return (
Custom Headers (PDF)

Text in these fields will overwrite the PGN headers in the generated PDF

); }; export default CustomHeaders;