1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Added headers to all pages

This commit is contained in:
Ivar Conradi Østhus 2015-03-28 09:51:31 +01:00
parent 0c836bef36
commit 0a9ee1309a
4 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,8 @@ var ArchiveFeatureComponent = React.createClass({
render: function () {
return (
<div>
<h1>Archived feature toggles</h1>
<h1>Archived Feature Toggles</h1>
<hr />
<table className="outerborder man">
<thead>
<tr>

View File

@ -37,6 +37,8 @@ var FeatureTogglesComponent = React.createClass({
return (
<div>
<h1>Feature Toggles</h1>
{this.state.createView ? this.renderCreateView() : this.renderCreateButton()}
<FeatureList

View File

@ -24,6 +24,7 @@ var LogEntriesComponent = React.createClass({
render: function() {
return (
<div>
<h1>Log</h1>
<hr />
<LogEntryList events={this.state.events} />
</div>

View File

@ -30,6 +30,7 @@ var StrategiesComponent = React.createClass({
render: function() {
return (
<div>
<h1>Activation Strategies</h1>
{this.state.createView ?
this.renderCreateView() : this.renderCreateButton()}
<hr />