{sectionOrder.map(key => renderSection(key))}
```
---
## 3. 컴포넌트 계층별 가이드
### atoms (src/components/atoms/)
- 가장 작은 재사용 단위
- HTML 요소 확장 또는 단일 기능
- 예: ScrollableButtonGroup, PhoneInput, BusinessNumberInput
### molecules (src/components/molecules/)
- atom 2개 이상 조합
- **FormField**: Label + Input 통합 (신규 폼 필수)
- 예: FormField, DateRangeFilter
### organisms (src/components/organisms/)
- 독립적 기능 블록, 페이지에 바로 배치 가능
- **내보내기 확인**: `src/components/organisms/index.ts`
| 컴포넌트 | 용도 |
|---------|------|
| PageHeader | 페이지 제목 + 액션 버튼 |
| PageLayout | 페이지 콘텐츠 래퍼 (패딩/max-width) |
| DataTable | 범용 데이터 테이블 |
| StatCards | 통계 카드 모음 |
| SearchFilter | 검색/필터 바 |
| SearchableSelectionModal\