Files
comfyui-deploy/web/src/app/(app)/share/[share_id]/settings/page.tsx
T

10 lines
224 B
TypeScript

import { SharePageSettings } from "@/components/SharePageSettings";
export default async function Page({
params,
}: {
params: { share_id: string };
}) {
return <SharePageSettings deployment_id={params.share_id} />;
}