import React from 'react'; import type { ReportData } from '../types'; import { ReportDisplay } from './ReportDisplay'; interface PrintableReportProps { report: ReportData; } export const PrintableReport: React.FC = ({ report }) => { // To ensure the generated PDF is strictly in light mode, we can wrap it in a container // that forces light theme classes, but since html2canvas evaluates computed styles, // it's best to ensure it renders offscreen without "dark" class in its hierarchy. // The 'light' class can help if tailwind 'dark' strategy is class-based. return (
); };