'use client'; import { useRouter } from 'next/navigation'; import { useRef } from 'react'; // "/books/keyword" 아래에 적용되는 레이아웃 export default function BooksLayout({ children }) { const router = useRouter(); const txtKeyword = useRef(null); // [검색] 버튼 클릭 시 '/books/keyword'로 리디렉션된다. const handleSearch = () => { router.push(`/books/${txtKeyword.current.value}`); }; return ( <>