blob: 37705c5de5bba98b6cbd21de5f3b0b874bf7dd6e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from 'react'
import LogoutButton from '../../components/navigation/LogoutButton'
import { useAuth } from '../../auth'
const Logout = (props) => {
const { logout } = useAuth()
return <LogoutButton {...props} onLogout={() => logout({ returnTo: window.location.origin })} />
}
export default Logout
|