import React from "react"; import { Box, VStack, Heading, Text, Button } from "@chakra-ui/react"; import { Construction } from "lucide-react"; interface FlowClassEditorProps { flowClassId?: string; onClose?: () => void; } export const FlowClassEditor: React.FC = ({ flowClassId, onClose, }) => { return ( Flow Class Editor Under Construction The Flow Class Editor is being rebuilt for a better experience. {flowClassId && ( Flow Class ID: {flowClassId} )} {onClose && ( )} ); };