@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
24 lines (19 loc) • 470 B
Plain Text
import dynamic from "next/dynamic";
import MasterPage from "@/components/layouts/MasterPage";
const Page@ = dynamic(() => import("@@PATH_COMPONENT"), { ssr: false });
// @@URL
const @ = () => {
\treturn (
\t\t<>
\t\t\t<style global jsx>{``}</style>
\t\t\t<MasterPage
\t\t\t\tmeta={{
\t\t\t\t\ttitle: "@@PAGE_NAME",
\t\t\t\t}}
\t\t\t>
\t\t\t\t<Page@ />
\t\t\t</MasterPage>
\t\t</>
\t);
};
export default @;