11 lines
413 B
TypeScript
11 lines
413 B
TypeScript
import { logout } from "@/constants/routes/handleAuth"
|
|
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import MyPagesMobileDropdown from "@/components/Current/Header/MyPagesMobileDropdown"
|
|
|
|
export default async function MyPagesMobileDropdownPage() {
|
|
// TODO: Figure out how to pass down props at the paralell route level.
|
|
// - POssibly by parsing [...paths]
|
|
return <MyPagesMobileDropdown lang={null} />
|
|
}
|