2017-12-25 18:19:28 +01:00
|
|
|
import React from 'react'
|
2017-12-31 19:32:52 +01:00
|
|
|
import { Helmet } from 'react-helmet'
|
2017-12-25 18:19:28 +01:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
|
|
|
|
class Logout extends React.Component {
|
|
|
|
componentDidMount() {}
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
2017-12-31 19:32:52 +01:00
|
|
|
<Helmet>
|
|
|
|
<title>mpwo - Dashboard</title>
|
|
|
|
</Helmet>
|
2017-12-31 18:43:24 +01:00
|
|
|
<h1 className="page-title">Dashboard</h1>
|
2017-12-25 18:19:28 +01:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
state => ({
|
|
|
|
user: state.user,
|
|
|
|
})
|
|
|
|
)(Logout)
|