stack/examples/cjs-test/app/handler/[...stack]/page.tsx
2024-06-16 14:58:10 +02:00

9 lines
233 B
TypeScript

import { StackHandler } from "@stackframe/stack";
const { stackServerApp } = require("../../../stack");
function Handler(props: any) {
return <StackHandler fullPage app={stackServerApp} {...props} />;
}
module.exports = Handler;