mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
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
9 lines
233 B
JavaScript
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;
|