ampache_react/app/views/LogoutPage.jsx

24 lines
545 B
React
Raw Normal View History

2016-08-06 17:25:56 +02:00
import React, { Component } from "react";
2016-07-07 23:23:18 +02:00
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 (
<div></div>
2016-07-07 23:23:18 +02:00
);
}
}
const mapDispatchToProps = (dispatch) => ({
actions: bindActionCreators(actionCreators, dispatch)
});
2016-07-25 23:22:44 +02:00
export default connect(null, mapDispatchToProps)(LogoutPage);