I'm trying to generate a PDF using the @react-pdf/renderer library in my React application. Everything seems to be working fine except for one issue: the right and bottom margins are not visible in the generated PDF. However, the top and left margins are clearly visible.
here's my code
import React from 'react'
import Title from './components/Title'
import { PDFViewer, Page, Document, View } from '@react-pdf/renderer'
import Table from './components/Table'
import Footer from './components/Footer'
const App = () => {
const tableData = [
{ sno: 2, hsn: 67890, mfg: 'XYZ Corp.' },
{ sno: 2, hsn: 67890, mfg: 'XYZ Corp.' },
]
return (
<PDFViewer style={{ width: '100%', height: '100vh' }}>
<Document>
<Page
orientation="landscape"
size="A4"
style={{
border: 1,
margin: 20,
}}
>
<View style={{ border: '1px solid black' }}>
<Title />
<Table tableData={tableData} />
<Footer />
</View>
</Page>
</Document>
</PDFViewer>
)
}
export default App
I have applied margin on all the sides this way:
Step1: You need to add styles this way:
Step2: Apply styles in the View
Let me know, if you've any further questions.