stack/examples/cjs-test/app/handler/[...stack]/page.jsx
Konsti Wohlwend 94a3edd77d
Some checks are pending
Runs E2E API Tests / build (20.x) (push) Waiting to run
Runs E2E API Tests / build (22.x) (push) Waiting to run
Lint & build / lint_and_build (20.x) (push) Waiting to run
Lint & build / lint_and_build (22.x) (push) Waiting to run
TOC Generator / TOC Generator (push) Waiting to run
Svix concurrency workaround (#167)
2024-08-03 21:05:24 -07:00

9 lines
233 B
JavaScript

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