import { cn } from "@/commons"; import { Note } from "@/components/note"; import type { LumeEvent } from "@/system"; import { memo } from "react"; export const TextNote = memo(function TextNote({ event, className, }: { event: LumeEvent; className?: string; }) { return (
); });