UNPKG

@premieroctet/next-admin

Version:

Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your proje

21 lines (20 loc) 720 B
import { jsx } from "react/jsx-runtime"; import { MainLayout as MainLayout_mjs_MainLayout } from "../components/MainLayout.mjs"; import { NextAdmin as NextAdmin_mjs_NextAdmin } from "../components/NextAdmin.mjs"; const createNextAdminComponents = (Adapter)=>{ const NextAdmin = (props)=>/*#__PURE__*/ jsx(Adapter, { children: /*#__PURE__*/ jsx(NextAdmin_mjs_NextAdmin, { ...props }) }); const MainLayout = (props)=>/*#__PURE__*/ jsx(Adapter, { children: /*#__PURE__*/ jsx(MainLayout_mjs_MainLayout, { ...props }) }); return { NextAdmin, MainLayout }; }; export { createNextAdminComponents };