This commit is contained in:
Mathias Biilmann Christensen
2016-05-30 17:13:40 -07:00
parent ba8febd107
commit 7601d3f5a1
5 changed files with 11 additions and 36 deletions

View File

@ -5,18 +5,10 @@ import { loginUser } from '../actions/auth';
import { currentBackend } from '../backends/backend';
class App extends React.Component {
constructor(props) {
super(props);
}
componentDidMount() {
this.props.dispatch(loadConfig());
}
componentWillReceiveProps(nextProps) {
//this.props.dispatch(loadBackend());
}
configError(config) {
return <div>
<h1>Error loading the CMS configuration</h1>
@ -81,13 +73,10 @@ class App extends React.Component {
}
function mapStateToProps(state) {
const { auth } = state;
const { auth, config } = state;
const user = auth && auth.get('user');
return {
auth: auth,
user: auth && auth.get('user'),
config: state.config
};
return {auth, config, user};
}
export default connect(mapStateToProps)(App);