We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1117319 commit a3f291cCopy full SHA for a3f291c
src/components/Header.js
@@ -3,12 +3,16 @@ import React from 'react';
3
import '../styles/Header.css';
4
import { Button, Jumbotron } from 'react-bootstrap';
5
import Container from 'react-bootstrap/Container';
6
+import {Link} from "react-router-dom";
7
8
function Header() {
9
+
10
return (
11
<div className='header'>
12
<Jumbotron fluid>
- <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>
16
</Jumbotron>
17
</div>
18
);
0 commit comments