stack/examples/supabase/app/handler/[...stack]/page.tsx
Zai Shi 3d2be1f84c
Supabase docs & examples (#219)
* added supabase example

* removed unused files

* added jwt endpoint

* supabase server action

* removed unused

* updated dependencies

* reverted package changes

* fixed bugs

* added supabase docs

* updated docs

* updated pnpm lock
2024-09-01 02:32:07 +02:00

7 lines
216 B
TypeScript

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