1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

rename Log-page to HistoryPage

This commit is contained in:
Ivar 2016-09-22 13:52:54 +02:00 committed by Ivar Conradi Østhus
parent 6689d5c4cd
commit 6ccab99bb8
4 changed files with 15 additions and 3 deletions

View File

@ -31,6 +31,7 @@
"main": "./index.js",
"dependencies": {
"immutability-helper": "^2.0.0",
"normalize.css": "^4.2.0",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.3.1",

View File

@ -8,7 +8,7 @@ export default class UnleashNav extends Component {
<List selectable ripple>
<Link to="/"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
<Link to="/strategies"><ListItem selectable caption="Strategies" /></Link>
<Link to="/logs"><ListItem selectable caption="Log" /></Link>
<Link to="/history"><ListItem selectable caption="Event History" /></Link>
<Link to="/archive"><ListItem selectable caption="Archive" /></Link>
<ListDivider />
<ListSubHeader Resources/>

View File

@ -9,7 +9,7 @@ import App from './App';
import Features from './page/features';
import Strategies from './page/strategies';
import Logs from './page/logs';
import HistoryPage from './page/history';
import Archive from './page/archive';
const unleashStore = createStore(store);
@ -20,7 +20,7 @@ ReactDOM.render(
<Route path="/" component={App}>
<IndexRoute component={Features} />
<Route path="/strategies" component={Strategies} />
<Route path="/logs" component={Logs} />
<Route path="/history" component={HistoryPage} />
<Route path="/archive" component={Archive} />
</Route>
</Router>

View File

@ -0,0 +1,11 @@
import React, { Component } from 'react';
export default class EventHisotry extends Component {
render () {
return (
<div>
<h1>Event history</h1>
</div>
);
}
};