Files
community-rule/app/(app)/create/layout.tsx
T
2026-04-18 14:12:49 -06:00

7 lines
250 B
TypeScript

import type { ReactNode } from "react";
import CreateFlowLayoutGate from "./CreateFlowLayoutGate";
export default function CreateFlowLayout({ children }: { children: ReactNode }) {
return <CreateFlowLayoutGate>{children}</CreateFlowLayoutGate>;
}