The PDF file is in my local folder. In fact the same folder where my component is:
I checked few answers on stackoverflow and my code is:
...
const Footer = (props) => {
return (
<a href="./Tanzeel_Mirza_Resume.pdf" download="Tanzeel_Mirza_Resume.pdf">Download</a>
)
}
...
When I click on this link, the PDF gets downloaded but it is blank and size is also 9kb while the actual PDF is 2MB in size.
Clearly I'm doing some silly mistake here. Please point it out.