1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
Files
inke/apps/web/ui/layout/nav.tsx
2023-11-10 14:59:47 +08:00

9 lines
281 B
TypeScript

import Navbar from "./navbar";
import { getServerSession } from "next-auth/next";
import { authOptions } from "app/api/auth/[...nextauth]/route";
export default async function Nav() {
const session = await getServerSession(authOptions);
return <Navbar session={session} />;
}