import { useNavigate } from "@solidjs/router"; import { useAuth } from "@/context/AuthContext"; import type { Component } from "solid-js"; const UserMenu: Component = () => { const { user, logout } = useAuth(); const navigate = useNavigate(); const handleLogout = () => { logout(); navigate("/login"); }; return (