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