Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🧪 QA (push) Failing after 1m13s
Build & Deploy / 🏗️ Build (push) Failing after 5m53s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Smoke Test (push) Has been skipped
Build & Deploy / ⚡ Lighthouse (push) Has been skipped
Build & Deploy / ♿ WCAG (push) Has been skipped
Build & Deploy / 🛡️ Quality Gates (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 4s
32 lines
728 B
TypeScript
32 lines
728 B
TypeScript
import configPromise from '@payload-config';
|
|
import { RootLayout } from '@payloadcms/next/layouts';
|
|
import React from 'react';
|
|
|
|
import '@payloadcms/next/css';
|
|
import './custom.scss';
|
|
import { handleServerFunctions } from '@payloadcms/next/layouts';
|
|
import { importMap } from './admin/importMap';
|
|
|
|
type Args = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
const serverFunction: any = async function (args: any) {
|
|
'use server';
|
|
return handleServerFunctions({
|
|
...args,
|
|
config: configPromise,
|
|
importMap,
|
|
});
|
|
};
|
|
|
|
const Layout = ({ children }: Args) => {
|
|
return (
|
|
<RootLayout config={configPromise} importMap={importMap} serverFunction={serverFunction}>
|
|
{children}
|
|
</RootLayout>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|