feat: complete wikification of War Commander batch 1&2 and final grey dot cleanup

This commit is contained in:
2026-04-27 18:58:22 +09:00
parent 3424166ea2
commit 6b86b0da4c
2706 changed files with 9074 additions and 7273 deletions
@@ -11,7 +11,7 @@ React Context는 React 애플리케이션 내에서 자식 컴포넌트들이
## 🔗 Knowledge Connections
- **Related Topics:** [[Compound Components]], [[React Server Components (RSC)]], [[CSS-in-JS]], [[Prop Drilling]]
- **Projects/Contexts:** [[Next.js App Router]], [[styled-components Theming]], [[Shopify Polaris Context]]
- **Projects/Contexts:** [[Next.js App Router]], styled-components Theming, Shopify Polaris Context
- **Contradictions/Notes:** 컴포넌트의 유연성과 상태 공유 측면에서 React Context 기반 패턴(CSS-in-JS, Compound Components 등)은 뛰어난 개발자 경험을 제공하지만, 렌더링 성능과 RSC라는 새로운 서버 아키텍처 맥락에서는 런타임 오버헤드와 호환성 문제를 일으킵니다 [6, 11, 14]. 결과적으로, 현대 프론트엔드 설계에서는 Context 의존도를 줄이고 정적 빌드타임 도구(예: Tailwind CSS, CSS Modules)나 zero-runtime CSS-in-JS(예: vanilla-extract)를 사용하는 쪽으로 권장 사항이 상충 및 변화하고 있습니다 [6, 15].
---