"use client"; import { type Node, type NodeProps } from "@xyflow/react"; import BaseNodeWrapper from "./base-node-wrapper"; export type NoteNodeData = { content?: string; }; export type NoteNode = Node; export default function NoteNode({ data, selected }: NodeProps) { return (
Notiz

{data.content || "Leere Notiz"}

); }