1import React, { Component } from 'react';
2import Pdf from '../Documents/Document.pdf';
3
4class Download extends Component {
5
6 render() {
7
8 return (
9 <div className = "App">
10 <a href = {Pdf} target = "_blank">Download Pdf</a>
11 </div>
12 );
13 }
14}
15
16export default Download;