import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { DropdownMenuItem } from "@/components/ui/dropdown-menu"; interface Props { data: unknown; } export const ShowNodeData = ({ data }: Props) => { return ( e.preventDefault()} > View Config Node Config See in detail the metadata of this node
							{JSON.stringify(data, null, 2)}
						
); };