refactor(front): 페이지/엔트리 import 경로 갱신
- SidebarFooter(auth)·Provider 이동에 따른 import 경로 반영 - 불필요한 주석 정리 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a0f7a229fa
commit
4d1c6f97c0
@ -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'
|
||||
|
||||
|
||||
@ -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)}
|
||||
>
|
||||
<List size={24} />
|
||||
</button>
|
||||
|
||||
@ -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() {
|
||||
</MainHeaderBar>
|
||||
}
|
||||
>
|
||||
{/* TODO: Content (ButtonSection / TableSection / PageSection) */}
|
||||
<ContentContainer />
|
||||
</MainLayout>
|
||||
)
|
||||
}
|
||||
@ -20,8 +21,7 @@ export function ListPage() {
|
||||
function Sidebar() {
|
||||
return (
|
||||
<>
|
||||
<FilterSection />
|
||||
{/* TODO: ArchiveSection */}
|
||||
<FilterContainer />
|
||||
<SidebarFooter />
|
||||
</>
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user