import { Document, Link, Page, Text } from '@react-pdf/renderer'
const doc = () => (
<Document>
<Page>
<Link src='#Footnote'> // Notice the hash symbol
Click me to get to the footnote
</Link>
// Other content here
<Text id='Footnote'> // No hash symbol
You are here because you clicked the link above
</Text>
</Page>
</Document>
);