'use client'; import '@/app/styles/note.scss'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; export default function NoteLayout({ children }: { children: React.ReactNode }) { const pathname = usePathname(); const isInbox = pathname?.startsWith('/note/inbox'); const isOutbox = pathname?.startsWith('/note/outbox'); return (
{children}
); }