Skip to content

Commit a3f291c

Browse files
Update header.js
1 parent 1117319 commit a3f291c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/Header.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ import React from 'react';
33
import '../styles/Header.css';
44
import { Button, Jumbotron } from 'react-bootstrap';
55
import Container from 'react-bootstrap/Container';
6+
import {Link} from "react-router-dom";
67

78
function Header() {
9+
810
return (
911
<div className='header'>
1012
<Jumbotron fluid>
11-
<Button fluid="true">Read and Sign the Manifesto</Button>
13+
<Link to='/manifesto'>
14+
<Button fluid="true">Read and Sign the Manifesto</Button>
15+
</Link>
1216
</Jumbotron>
1317
</div>
1418
);

0 commit comments

Comments
 (0)