mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-09 22:31:10 +00:00
8 lines
202 B
TypeScript
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"
|
|
/>
|
|
)
|
|
}
|