I'm trying to print multiple pages by using react-native-print library. Single page is printing fine but don't know how to print multiple pages as I have object array having data. Tried the following but not working.
const printHTML = async () => {
for (let i = 0; i < data.length; i++) {
await RNPrint.print({
html: `<h1> STOCK #:${234} </br> VIN #: ${'SDKSD#ESD#d##23'} </br></br>${'2022'} ${'Kia'} ${'Forte'}</h1>`,
})
}
}