supermemory/apps/web/components/new/add-document/note.tsx
2026-01-08 18:06:13 -08:00

8 lines
202 B
TypeScript

export function NoteContent() {
return (
<textarea
placeholder="Write your note here..."
className="w-full h-full p-4 mb-4! rounded-[14px] bg-[#14161A] shadow-inside-out resize-none"
/>
)
}