"use client"; import { useState } from "react"; import { Input } from "@/components/ui/Input"; import { Button } from "@/components/ui/Button"; export default function NoteEditorPage() { const [title, setTitle] = useState(""); const [content, setContent] = useState(""); return (

编辑笔记

setTitle(e.target.value)} placeholder="笔记标题" className="text-lg font-medium border-0 px-0" />