UNPKG

@inertiapixel/nextjs-auth

Version:

Authentication system for Next.js. Supports credentials and social login, JWT token management, and lifecycle hooks — designed to integrate with nodejs-auth for full-stack MERN apps.

6 lines (5 loc) 189 B
interface SignedInProps { children: React.ReactNode; } declare const SignedIn: ({ children }: SignedInProps) => import("react/jsx-runtime").JSX.Element | null; export default SignedIn;