-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.js
More file actions
27 lines (26 loc) · 896 Bytes
/
headers.js
File metadata and controls
27 lines (26 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React, { Component } from 'react';
import {
Link
}from 'react-router-dom';
//My header class for a web project
class Headers extends Component {
render() {
return (
<div className="logo_head_container">
<nav>
<div class="fadeInUp wow"> <h3 className="logo">God and The Lord Jesus Christ</h3></div>
<div id="menu">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"><Link to="/">Home</Link></li>
<li class="nav-item"><Link to="/inform">Inform</Link></li>
<li class="nav-item"><Link to="/pages">Pages</Link></li>
</ul>
</div>
</div>
</nav>
</div>
);
}
}
export default Headers;