From 4d1c6f97c06901ad438914db8f0564bc1776f8d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Wed, 17 Jun 2026 10:49:07 +0900 Subject: [PATCH] =?UTF-8?q?refactor(front):=20=ED=8E=98=EC=9D=B4=EC=A7=80/?= =?UTF-8?q?=EC=97=94=ED=8A=B8=EB=A6=AC=20import=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EA=B0=B1=EC=8B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SidebarFooter(auth)·Provider 이동에 따른 import 경로 반영 - 불필요한 주석 정리 Co-Authored-By: Claude Opus 4.8 (1M context) --- front/src/main.tsx | 2 +- front/src/pages/ChatPage.tsx | 3 ++- front/src/pages/ListPage.tsx | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/front/src/main.tsx b/front/src/main.tsx index b0f2ed4..af7833d 100644 --- a/front/src/main.tsx +++ b/front/src/main.tsx @@ -1,6 +1,6 @@ import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' -import { Provider } from '@/core/provider' +import { Provider } from '@/core/Provider' import '@/index.css' import App from '@/App' diff --git a/front/src/pages/ChatPage.tsx b/front/src/pages/ChatPage.tsx index 0d7cd19..71edb00 100644 --- a/front/src/pages/ChatPage.tsx +++ b/front/src/pages/ChatPage.tsx @@ -1,5 +1,6 @@ import { useNavigate } from 'react-router' import { List } from 'lucide-react' +import { cn, interactive } from '@/lib' import { MainLayout, MainHeaderBar } from '@/layouts' export function ChatPage() { @@ -27,7 +28,7 @@ function ListNavButton() { type="button" aria-label="목록으로 이동" onClick={() => navigate('/list')} - className="cursor-pointer text-foreground" + className={cn('text-foreground', interactive)} > diff --git a/front/src/pages/ListPage.tsx b/front/src/pages/ListPage.tsx index 9d49500..b6927a5 100644 --- a/front/src/pages/ListPage.tsx +++ b/front/src/pages/ListPage.tsx @@ -1,5 +1,6 @@ import { MainLayout, MainHeaderBar } from '@/layouts' -import { FilterSection, SidebarFooter } from '@/features/list' +import { FilterContainer, ContentContainer } from '@/features/list' +import { SidebarFooter } from '@/features/auth' export function ListPage() { return ( @@ -12,7 +13,7 @@ export function ListPage() { } > - {/* TODO: Content (ButtonSection / TableSection / PageSection) */} + ) } @@ -20,8 +21,7 @@ export function ListPage() { function Sidebar() { return ( <> - - {/* TODO: ArchiveSection */} + )