ampache_react/app/views/LogoutPage.jsx

27 lines
592 B
React
Raw Normal View History

2016-07-07 23:23:18 +02:00
import React, { Component } from "react";
import { bindActionCreators } from "redux";
import { connect } from "react-redux";
import * as actionCreators from "../actions";
export class LogoutPage extends Component {
componentDidMount () {
this.props.actions.logoutAndRedirect();
}
render () {
return (
null
);
}
}
const mapStateToProps = (state) => ({
});
const mapDispatchToProps = (dispatch) => ({
actions: bindActionCreators(actionCreators, dispatch)
});
export default connect(mapStateToProps, mapDispatchToProps)(LogoutPage);