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