summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/elements/LoadChartContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/sidebars/elements/LoadChartContainer.js')
-rw-r--r--frontend/src/containers/app/sidebars/elements/LoadChartContainer.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/frontend/src/containers/app/sidebars/elements/LoadChartContainer.js b/frontend/src/containers/app/sidebars/elements/LoadChartContainer.js
deleted file mode 100644
index 61f95932..00000000
--- a/frontend/src/containers/app/sidebars/elements/LoadChartContainer.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { connect } from 'react-redux'
-import LoadChartComponent from '../../../../components/app/sidebars/elements/LoadChartComponent'
-
-const mapStateToProps = (state, ownProps) => {
- const data = []
-
- return {
- data,
- currentTick: state.currentTick,
- }
-}
-
-const LoadChartContainer = connect(mapStateToProps)(LoadChartComponent)
-
-export default LoadChartContainer