본문으로 건너뛰기

Frontend 기술 스택

🏗️ Backoffice 아키텍처


기술 상세

UI Layer

State Management

API Integration


프로젝트 구조

backoffice/
├── src/
│ ├── app/ # App Router
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components/ # UI Components
│ │ ├── ui/ # shadcn/ui
│ │ ├── features/ # Feature Components
│ │ └── layouts/ # Layout Components
│ ├── hooks/ # Custom Hooks
│ ├── stores/ # Zustand Stores
│ ├── services/ # API Services
│ ├── types/ # TypeScript Types
│ └── utils/ # Utilities
├── public/ # Static Assets
└── tests/ # Test Files

컴포넌트 아키텍처


성능 최적화


주요 의존성

패키지버전용도
React19.xUI Framework
TypeScript5.xType Safety
Vite5.xBuild Tool
Tailwind CSS4.xStyling
Zustand4.xState Management
TanStack Query5.xServer State
shadcn/uiLatestUI Components

반응형 디자인


관련 문서: