thomasdvd
thomasdvd
TTCTheo's Typesafe Cult
Created by Nate Vukovich on 10/16/2023 in #questions
Next Auth + Create T3 App ( appDir )
NextAuthProvider.tsx to mount in root layout.tsx aroung {children}
"use client";

import { SessionProvider } from "next-auth/react";
import { type ReactNode } from "react";

export default function NextAuthProvider({
children,
}: {
children: ReactNode;
}) {
return <SessionProvider>{children}</SessionProvider>;
}
"use client";

import { SessionProvider } from "next-auth/react";
import { type ReactNode } from "react";

export default function NextAuthProvider({
children,
}: {
children: ReactNode;
}) {
return <SessionProvider>{children}</SessionProvider>;
}
6 replies
TTCTheo's Typesafe Cult
Created by Nate Vukovich on 10/16/2023 in #questions
Next Auth + Create T3 App ( appDir )
this is my auth.ts file works for me
6 replies
TTCTheo's Typesafe Cult
Created by EQ on 10/8/2022 in #questions
Analytics Platform
Plausible?
5 replies