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

7 lines
221 B
TypeScript

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