about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx')
-rw-r--r--app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx b/app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx
deleted file mode 100644
index 6c4e73e38..000000000
--- a/app/assets/javascripts/components/features/ui/containers/loading_bar_container.jsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { connect }    from 'react-redux';
-import LoadingBar from 'react-redux-loading-bar';
-
-const mapStateToProps = (state) => ({
-  loading: state.get('loadingBar')
-});
-
-export default connect(mapStateToProps)(LoadingBar.WrappedComponent);