-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
37 lines (36 loc) · 1.09 KB
/
App.js
File metadata and controls
37 lines (36 loc) · 1.09 KB
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
28
29
30
31
32
33
34
35
36
37
import React, { Component } from 'react';
import './App.css';
import { Link } from 'react-router-dom';
import { Layout, Header, Navigation, Drawer, Content } from 'react-mdl';
import Main from './components/main';
class App extends Component {
render() {
return (
<div className="demo-big-content">
<Layout>
<Header className="header-color" title="Title" scroll>
<Navigation>
<Link to="/resume">Resume</Link>
<Link to="/aboutme">AboutMe</Link>
<Link to="/projects">Projects</Link>
<Link to="/contact">Contact</Link>
</Navigation>
</Header>
<Drawer title="Title">
<Navigation>
<Link to="/resume">Resume</Link>
<Link to="/aboutme">AboutMe</Link>
<Link to="/projects">Projects</Link>
<Link to="/contact">Contact</Link>
</Navigation>
</Drawer>
<Content>
<div className="page-content" />
<Main/>
</Content>
</Layout>
</div>
);
}
}
export default App;