Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkp committed Mar 30, 2016
1 parent 7e80325 commit 4c71696
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Routing.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import { Router, Route, hashHistory, IndexRoute } from 'react-router';
import Application from './sections/Application';
import Content from './sections/content/Content';
import NoContent from './sections/content/NoContent';
import Commands from './sections/results/Commands';
import CommandLog from './sections/results/CommandLog';


render((
<Router history={hashHistory}>
<Route path="/" component={Application} >
<IndexRoute component={Commands} />
<IndexRoute component={CommandLog} />
</Route>
</Router>
), document.getElementById('root'));
2 changes: 1 addition & 1 deletion src/sections/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Layout, Fixed, Flex} from 'react-layout-pane';

import Header from './header/Header';
import Footer from './footer/Footer';
import Commands from './results/Commands';
import CommandLog from './results/CommandLog';
import Sidebar from './sidebar/Sidebar';


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import CommandResponse from './CommandResponse';
import TreePane from './tree/TreePane';
import SplitPane from 'react-split-pane';
import './commands.scss';
import './command-log.scss';
import {Layout, Fixed, Flex} from 'react-layout-pane';


Expand Down
File renamed without changes.

0 comments on commit 4c71696

Please sign in to comment.