2017-12-25 17:45:28 +01:00
|
|
|
import React from 'react'
|
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import { Link } from 'react-router-dom'
|
|
|
|
|
2017-12-25 18:19:28 +01:00
|
|
|
import { logout } from '../../actions'
|
2017-12-25 17:45:28 +01:00
|
|
|
|
|
|
|
class Logout extends React.Component {
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.UserLogout()
|
|
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
You are now logged out.
|
|
|
|
Click <Link to="/login">here</Link> to log back in.</p>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
state => ({
|
|
|
|
user: state.user,
|
|
|
|
}),
|
|
|
|
dispatch => ({
|
|
|
|
UserLogout: () => {
|
|
|
|
dispatch(logout())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)(Logout)
|