mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import { StackHandler } from "@stackframe/stack";
|
|
import { stackServerApp } from "../../../stack";
|
|
|
|
export default function Handler(props: any) {
|
|
return (
|
|
<div style={{ backgroundColor: "white", borderRadius: 4 }}>
|
|
<StackHandler app={stackServerApp} {...props} />
|
|
</div>
|
|
);
|
|
}
|