-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.jsx
45 lines (36 loc) · 1.05 KB
/
main.jsx
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
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
import injectTapEventPlugin from 'react-tap-event-plugin';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import Home from './components/homePage';
import About from './components/about/aboutPage';
import Header from './components/common/header';
export default class App extends Component {
static propTypes = {
route: PropTypes.string,
};
render() {
let Child;
switch (this.props.route) {
case 'about': Child = About; break;
default: Child = Home;
}
return (
<MuiThemeProvider muiTheme={this.muiTheme}>
<div>
<Header />
<Child />
</div>
</MuiThemeProvider>
);
}
}
App.defaultProps = { route: 'home' };
const renderPage = () => {
const route = window.location.hash.substr(1);
ReactDOM.render(<App route={route} />, document.getElementById('app'));
};
window.addEventListener('hashchange', renderPage);
injectTapEventPlugin();
renderPage();