blob: 94d4d06149d9f3488646e07f93dcb87dc59070f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react'
import { useDispatch } from 'react-redux'
import { logOut } from '../../redux/actions/auth'
import LogoutButton from '../../components/navigation/LogoutButton'
const Logout = (props) => {
const dispatch = useDispatch()
return <LogoutButton {...props} onLogout={() => dispatch(logOut())} />
}
export default Logout
|