refactor(front): 페이지/엔트리 import 경로 갱신

- SidebarFooter(auth)·Provider 이동에 따른 import 경로 반영
- 불필요한 주석 정리

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
민헌 2026-06-17 10:49:07 +09:00
parent a0f7a229fa
commit 4d1c6f97c0
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
import { StrictMode } from 'react' import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client' import { createRoot } from 'react-dom/client'
import { Provider } from '@/core/provider' import { Provider } from '@/core/Provider'
import '@/index.css' import '@/index.css'
import App from '@/App' import App from '@/App'

View File

@ -1,5 +1,6 @@
import { useNavigate } from 'react-router' import { useNavigate } from 'react-router'
import { List } from 'lucide-react' import { List } from 'lucide-react'
import { cn, interactive } from '@/lib'
import { MainLayout, MainHeaderBar } from '@/layouts' import { MainLayout, MainHeaderBar } from '@/layouts'
export function ChatPage() { export function ChatPage() {
@ -27,7 +28,7 @@ function ListNavButton() {
type="button" type="button"
aria-label="목록으로 이동" aria-label="목록으로 이동"
onClick={() => navigate('/list')} onClick={() => navigate('/list')}
className="cursor-pointer text-foreground" className={cn('text-foreground', interactive)}
> >
<List size={24} /> <List size={24} />
</button> </button>

View File

@ -1,5 +1,6 @@
import { MainLayout, MainHeaderBar } from '@/layouts' 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() { export function ListPage() {
return ( return (
@ -12,7 +13,7 @@ export function ListPage() {
</MainHeaderBar> </MainHeaderBar>
} }
> >
{/* TODO: Content (ButtonSection / TableSection / PageSection) */} <ContentContainer />
</MainLayout> </MainLayout>
) )
} }
@ -20,8 +21,7 @@ export function ListPage() {
function Sidebar() { function Sidebar() {
return ( return (
<> <>
<FilterSection /> <FilterContainer />
{/* TODO: ArchiveSection */}
<SidebarFooter /> <SidebarFooter />
</> </>
) )