"use client"; import dynamic from "next/dynamic"; import type { ReactNode } from "react"; import { useTranslation } from "../../contexts/MessagesContext"; function CreateFlowLayoutLoading() { const t = useTranslation("controlsChrome"); return (
); } const CreateFlowLayoutClient = dynamic( () => import("./CreateFlowLayoutClient"), { ssr: false, loading: () => , }, ); export default function CreateFlowLayoutGate({ children, }: { children: ReactNode; }) { return {children}; }