From 1f3bbc8ff9ea02c03afec949bc76b95783d8f6f7 Mon Sep 17 00:00:00 2001 From: saseungmin Date: Wed, 7 Feb 2024 00:03:30 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20layout=20useResizeViewportHeight=20?= =?UTF-8?q?hook=EC=A0=9C=EA=B1=B0=20=EB=B0=8F=20server=20component?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Layout/index.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index 89e35d3..a833b8d 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -1,16 +1,10 @@ -'use client'; - import { PropsWithChildren } from 'react'; import Image from 'next/image'; -import { useResizeViewportHeight } from '@nf-team/react'; - import styles from './index.module.scss'; function Layout({ children }: PropsWithChildren) { - useResizeViewportHeight(); - return (