-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathApp.js
More file actions
41 lines (35 loc) · 743 Bytes
/
App.js
File metadata and controls
41 lines (35 loc) · 743 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import React from "react";
import { Button } from 'reactstrap';
import Navigation from './Components/Navigation';
import Main from './Components/Main';
import Herocontent from './Components/Herocontent';
class App extends React.Component {
constructor(props){
super(props);
this.state = {
count : 0
}
this.increment = this.increment.bind(this);
this.decrement = this.decrement.bind(this);
}
increment() {
this.setState(
{count : this.state.count+1}
);
}
decrement() {
this.setState(
{count : this.state.count-1}
);
}
render() {
return (
<div>
<Navigation />
<Herocontent />
<Main />
</div>
);
}
}
export default App;