import type { ChangeEvent } from "react"; import FormField from "#/components/FormField.tsx"; import type { IHeader } from "#/interfaces.ts"; interface IProps { headers: IHeader; updateHeaders: (e: ChangeEvent, fieldName: string) => void; } const CustomHeaders = ({ headers, updateHeaders }: IProps) => { return (
Custom Headers (PDF)

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

); }; export default CustomHeaders;