stack/examples/cjs-test/app/layout.tsx
Bilal Godil c91a23ee88 Hexclave rename PR5: rename stack*App local-variable convention
Step 5: rename lowercase local vars stackApp/stackServerApp/stackClientApp/
stackAdminApp -> hexclave* across SDK source, apps, examples, and docs-mintlify
(docs/ excluded). Public StackServerApp/StackClientApp classes and the
useStackApp hook are unchanged. typecheck + lint green.
2026-06-03 12:17:14 -07:00

17 lines
382 B
TypeScript

const { StackProvider, StackTheme } = require("@hexclave/next");
const { hexclaveServerApp } = require("../hexclave");
require("./globals.css");
function RootLayout({
children,
}: any) {
return (
<html lang="en">
<body><StackProvider app={hexclaveServerApp}><StackTheme>{children}</StackTheme></StackProvider></body>
</html>
);
}
module.exports = RootLayout;