From 337462aa5e68014aa15788e4513e190b2e434d7e Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 19 Sep 2016 23:25:59 +0200 Subject: Re-organizing components to be more modular, adding loading bars --- .../javascripts/components/containers/navigation_container.jsx | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 app/assets/javascripts/components/containers/navigation_container.jsx (limited to 'app/assets/javascripts/components/containers/navigation_container.jsx') diff --git a/app/assets/javascripts/components/containers/navigation_container.jsx b/app/assets/javascripts/components/containers/navigation_container.jsx deleted file mode 100644 index 4aeea4c37..000000000 --- a/app/assets/javascripts/components/containers/navigation_container.jsx +++ /dev/null @@ -1,8 +0,0 @@ -import { connect } from 'react-redux'; -import NavigationBar from '../components/navigation_bar'; - -const mapStateToProps = (state, props) => ({ - account: state.getIn(['timelines', 'accounts', state.getIn(['timelines', 'me'])]) -}); - -export default connect(mapStateToProps)(NavigationBar); -- cgit