"use client" import {PropsWithChildren} from "react"; import {DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger} from "@/components/ui/dropdown-menu"; import {signOutAction} from "@/features/auth/auth.action"; import {redirect} from "next/navigation"; export type LoggedInDropdownProps = PropsWithChildren<{}> export const LoggedInDropdown = (props: LoggedInDropdownProps) => { return ( {props.children} { redirect("/dashboard/profile") }}> Account { signOutAction() }}> Sign out ) }