UNPKG

create-rivas-react

Version:

Boilerplate for create react with atomic design

15 lines (10 loc) 228 B
import { useEffect } from 'react'; import { useAuth } from 'context/AuthContext'; function Logout() { const { logout } = useAuth(); useEffect(() => { logout(); }, [logout]); return null; } export default Logout;