stack/examples/convex/app/handler/[...stack]/page.tsx

7 lines
247 B
TypeScript

import { StackHandler } from "@hexclave/next";
import { stackServerApp } from "../../../hexclave/server";
export default function Handler(props: unknown) {
return <StackHandler fullPage app = { stackServerApp } routeProps = { props } />;
}