"use client"; import type { Node, NodeProps } from "@xyflow/react"; import type { FrameData } from "@/lib/flow"; export function PhaseFrameNode({ data }: NodeProps>) { const frame = data.frame; return
{frame.title} {frame.subtitle}
; }