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.

7 lines (6 loc) 220 B
'use client'; import { jsx as _jsx } from "react/jsx-runtime"; import { Suspense } from 'react'; export const SuspenseWrapper = ({ children }) => { return (_jsx(Suspense, { fallback: null, children: children })); };