stack/apps/middleware/src/app/handler/[...stack]/page.tsx
2024-05-05 17:33:36 +02:00

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>
);
}