mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
rename Log-page to HistoryPage
This commit is contained in:
parent
6689d5c4cd
commit
6ccab99bb8
@ -31,6 +31,7 @@
|
|||||||
"main": "./index.js",
|
"main": "./index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"immutability-helper": "^2.0.0",
|
"immutability-helper": "^2.0.0",
|
||||||
|
"normalize.css": "^4.2.0",
|
||||||
"react": "^15.3.1",
|
"react": "^15.3.1",
|
||||||
"react-addons-css-transition-group": "^15.3.1",
|
"react-addons-css-transition-group": "^15.3.1",
|
||||||
"react-dom": "^15.3.1",
|
"react-dom": "^15.3.1",
|
||||||
|
@ -8,7 +8,7 @@ export default class UnleashNav extends Component {
|
|||||||
<List selectable ripple>
|
<List selectable ripple>
|
||||||
<Link to="/"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
|
<Link to="/"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
|
||||||
<Link to="/strategies"><ListItem selectable caption="Strategies" /></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>
|
<Link to="/archive"><ListItem selectable caption="Archive" /></Link>
|
||||||
<ListDivider />
|
<ListDivider />
|
||||||
<ListSubHeader Resources/>
|
<ListSubHeader Resources/>
|
||||||
|
@ -9,7 +9,7 @@ import App from './App';
|
|||||||
|
|
||||||
import Features from './page/features';
|
import Features from './page/features';
|
||||||
import Strategies from './page/strategies';
|
import Strategies from './page/strategies';
|
||||||
import Logs from './page/logs';
|
import HistoryPage from './page/history';
|
||||||
import Archive from './page/archive';
|
import Archive from './page/archive';
|
||||||
|
|
||||||
const unleashStore = createStore(store);
|
const unleashStore = createStore(store);
|
||||||
@ -20,7 +20,7 @@ ReactDOM.render(
|
|||||||
<Route path="/" component={App}>
|
<Route path="/" component={App}>
|
||||||
<IndexRoute component={Features} />
|
<IndexRoute component={Features} />
|
||||||
<Route path="/strategies" component={Strategies} />
|
<Route path="/strategies" component={Strategies} />
|
||||||
<Route path="/logs" component={Logs} />
|
<Route path="/history" component={HistoryPage} />
|
||||||
<Route path="/archive" component={Archive} />
|
<Route path="/archive" component={Archive} />
|
||||||
</Route>
|
</Route>
|
||||||
</Router>
|
</Router>
|
||||||
|
11
packages/unleash-frontend-next/src/page/history/index.js
Normal file
11
packages/unleash-frontend-next/src/page/history/index.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
|
export default class EventHisotry extends Component {
|
||||||
|
render () {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>Event history</h1>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user