i have a problem when i will print using react-to-print, that problem is with style of page, when i print the html, it print like:
and i dont want that, i want to print like (but without the buttons)
but i dont know how do.
in my code y put the next:
handler Print:
const handlerPrint = useReactToPrint({
documentTitle: `Reporte de Textiles- ${reporte}`,
content: () => componentRef.current,
bodyClass:'', //i dont exactly know what put here
trigger: async (event) => { console.log(event) },
pageStyle:'', //i don know what put here
copyStyles: true,
onAfterPrint: (event) => {
setReporte("")
// code when is finish
}
})
do you have any idea to solve it? thanks