mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
const { StackHandler } = require("@hexclave/next");
|
|
const { stackServerApp } = require("../../../stack");
|
|
|
|
function Handler(props) {
|
|
return <StackHandler fullPage app={stackServerApp} routeProps={props} />;
|
|
}
|
|
|
|
module.exports = Handler;
|