summaryrefslogtreecommitdiff
path: root/frontend/views/index/index.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/views/index/index.container.js')
-rw-r--r--frontend/views/index/index.container.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/frontend/views/index/index.container.js b/frontend/views/index/index.container.js
index 2da89cb..c6cb819 100644
--- a/frontend/views/index/index.container.js
+++ b/frontend/views/index/index.container.js
@@ -19,12 +19,14 @@ class Container extends Component {
}
render() {
return (
- <div className='body'>
+ <div>
<Header />
- <div className='index'>
- <Route exact path='/index/new' component={GraphNew} />
- <Route exact path='/index/:id/edit' component={GraphEdit} />
- <Route exact path='/index' component={GraphIndex} />
+ <div className='body'>
+ <div className='index'>
+ <Route exact path='/index/new' component={GraphNew} />
+ <Route exact path='/index/:id/edit' component={GraphEdit} />
+ <Route exact path='/index' component={GraphIndex} />
+ </div>
</div>
</div>
)