'React Html5 target blank attribute won't working by download

I try to download a file pdf.

import React, {Component} from 'react';
import cv from "../media/Test.pdf";

export default class Downloader extends Component {
    render() {
        return (
            <div className="pdf">
                <a href={cv} download="Test.pdf" target="_blank">Download</a>
            </div>
        );
    }
}

why the target="_blank" doesn't work?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source