docs(wiki): fix translation typos in Brief Summary and organize stray files into directories

This commit is contained in:
Antigravity Agent
2026-05-04 15:23:55 +09:00
parent 343107a49f
commit d9b5337388
102 changed files with 157 additions and 152 deletions
@@ -1,6 +1,6 @@
# [[차선 모델과 작업 우선순위 (Lane Model & Priorities)|차선 모델과 작업 우선순위 (Lane Model & Priorities]]
## 📌Brief Summary
## 📌 Brief Summary
React의 차선 모델(Lane Model)은 Concurrent 렌더링을 지원하기 위해 작업의 우선순위를 32비트 정수(비트마스크)로 관리하는 시스템입니다 [1, 2]. 이 시스템은 업데이트의 중요도에 따라 작업을 분류하고, 긴급한 사용자 상호작용을 먼저 처리하며 상대적으로 덜 중요한 작업은 지연시킵니다 [1, 3, 4]. 이를 통해 메인 스레드의 블로킹을 방지하고 애플리케이션의 반응성과 전반적인 사용자 경험을 크게 향상시킵니다 [4, 5].
## 📖 Core Content