Fix code style inconsistencies

This commit is contained in:
SteveSandersonMS
2016-02-24 18:37:47 +00:00
parent c668387dac
commit c1b808f8af
6 changed files with 31 additions and 31 deletions

View File

@@ -6,7 +6,7 @@ import { FetchData } from './components/FetchData';
import { Counter } from './components/Counter';
export const routes = <Route component={ Layout }>
<Route path="/" components={{ body: Home }} />
<Route path="/counter" components={{ body: Counter }} />
<Route path="/fetchdata" components={{ body: FetchData }} />
<Route path='/' components={{ body: Home }} />
<Route path='/counter' components={{ body: Counter }} />
<Route path='/fetchdata' components={{ body: FetchData }} />
</Route>;