Files
next-dj/app/providers.tsx
Beyhan Oğur e881f38e4e first commit
2026-04-26 22:12:36 +03:00

8 lines
206 B
TypeScript

"use client";
import { SessionProvider } from "next-auth/react";
export default function Providers({ children }: { children: React.ReactNode }) {
return <SessionProvider>{children}</SessionProvider>;
}