Files
web/components/Loyalty/Sidebar/MyPagesNavigation/index.tsx
2024-07-01 11:46:35 +02:00

15 lines
319 B
TypeScript

import { auth } from "@/auth"
import MyPagesSidebar from "@/components/MyPages/Sidebar"
import { LangParams } from "@/types/params"
export default async function MyPagesNavigation({ lang }: LangParams) {
const session = await auth()
if (!session) {
return null
}
return <MyPagesSidebar lang={lang} />
}