From df3f863f19363abeb61866663c6094b716b03e31 Mon Sep 17 00:00:00 2001 From: Andy Hong Date: Tue, 30 Dec 2025 22:09:52 +0900 Subject: [PATCH 1/5] =?UTF-8?q?refactor:=20GNB=EB=A5=BC=20Gnb=EB=A1=9C=20r?= =?UTF-8?q?ename=20(#9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/{GNB.tsx => Gnb.tsx} | 4 ++-- src/components/layout/index.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/components/layout/{GNB.tsx => Gnb.tsx} (92%) diff --git a/src/components/layout/GNB.tsx b/src/components/layout/Gnb.tsx similarity index 92% rename from src/components/layout/GNB.tsx rename to src/components/layout/Gnb.tsx index 144f59b7..8f6138aa 100644 --- a/src/components/layout/GNB.tsx +++ b/src/components/layout/Gnb.tsx @@ -2,12 +2,12 @@ import clsx from 'clsx'; import { TABS, type Tab } from '../../constants/navigation'; -interface GNBProps { +interface GnbProps { activeTab?: Tab; onTabChange?: (tab: Tab) => void; } -export function GNB({ activeTab = 'slide', onTabChange }: GNBProps) { +export function Gnb({ activeTab = 'slide', onTabChange }: GnbProps) { return (