"use client"; import { useParams } from "next/navigation"; import { NotesList } from "@/components/notes/NotesList"; export default function NotizenPage() { const { id } = useParams<{ id: string }>(); return ; }