diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-04-02 15:54:30 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-04-02 15:54:30 +0200 |
| commit | a5edc770771479532f6e4af08e71b242744625d2 (patch) | |
| tree | 1445a098f8e5615d864f9006812b54c4db8f311b /frontend/app/views/graph/graph.container.js | |
| parent | 353334c69f52a49c92618bb673dd11c506c383cd (diff) | |
mitigating some weird nav issues and FOUC
Diffstat (limited to 'frontend/app/views/graph/graph.container.js')
| -rw-r--r-- | frontend/app/views/graph/graph.container.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/frontend/app/views/graph/graph.container.js b/frontend/app/views/graph/graph.container.js index 57ea205..7d2baf9 100644 --- a/frontend/app/views/graph/graph.container.js +++ b/frontend/app/views/graph/graph.container.js @@ -1,6 +1,4 @@ import React, { Component } from 'react' -import { Route } from 'react-router-dom' -import { bindActionCreators } from 'redux' import { connect } from 'react-redux' import './graph.css' @@ -79,8 +77,4 @@ const mapStateToProps = state => ({ graph: state.graph, }) -const mapDispatchToProps = dispatch => ({ - // uploadActions: bindActionCreators({ ...uploadActions }, dispatch), -}) - -export default connect(mapStateToProps, mapDispatchToProps)(GraphContainer) +export default connect(mapStateToProps)(GraphContainer) |
