"use client"; import { memo } from "react"; import { NodeProps } from "reactflow"; import { MessageSquare } from "lucide-react"; import { CompactNodeShell } from "./CompactNodeShell"; export const CommentNode = memo(({ data, selected }: NodeProps) => { return ( } selected={selected} hasInput={false} hasOutput={false} /> ); }); CommentNode.displayName = "CommentNode";