Files
recall/src/app/new/page.tsx
T
2026-03-22 13:01:46 -03:00

10 lines
257 B
TypeScript

import { NoteForm } from '@/components/note-form'
export default function NewNotePage() {
return (
<main className="container mx-auto py-8 px-4">
<h1 className="text-2xl font-bold mb-6">Crear nueva nota</h1>
<NoteForm />
</main>
)
}