10 lines
257 B
TypeScript
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>
|
|
)
|
|
} |