-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
70 lines (61 loc) · 2.38 KB
/
index.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import React from 'react';
import ReactDOM from 'react-dom';
import {ContentCls as ProductContent} from './Pages/Products/Content';
import {ContentCls as FeaturedProductContent} from './Pages/FeaturedProducts/Content';
import {ContentCls as CartContent} from './Pages/Cart/Content';
import {ContentCls as HomeContent} from './Pages/Home/Content';
import Page from './Components/PageContent/Item';
import Cart from './Components/PageContent/CartPopup/Item';
import Footer from './Components/Footer/Item';
import Header from './Components/Header/Item';
import registerServiceWorker from './registerServiceWorker';
import {BrowserRouter as Router,Route} from 'react-router-dom';
import './index.css';
class App extends React.Component{
constructor(){
super();
this.state={title:''};
}
setTitle(title){
this.setState({title:title});
}
render(){
return (
<Router>
<div id="content-block">
<div className="content-center fixed-header-margin">
<div id="header" className="header-wrapper style-10">
<Header title={this.state.title}/>
<div className="clear"></div>
</div>
{/*<Page>*/}
<Route path="/product" render={comp=>(
<ProductContent setTitle={this.setTitle.bind(this)} />
)} />
<Route path="/featured" render={comp=>(
<FeaturedProductContent setTitle={this.setTitle.bind(this)} />
)} />
<Route path="/cart" render={comp=>(
<CartContent setTitle={this.setTitle.bind(this)} />
)} />
<Route path="/home" render={comp=>(
<HomeContent setTitle={this.setTitle.bind(this)} />
)} />
<Footer />
{/*</Page>*/}
</div>
<div className="clear"></div>
</div>
</Router>
);
}
}
ReactDOM.render(
<App />,
document.getElementById('root')
)
ReactDOM.render(
<Cart />,
document.getElementById('cart')
)
registerServiceWorker();