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
@@ -8,7 +8,7 @@ last_updated: 2026-05-04
# React Server Actions
## 📌 Brief Summary
## 📌 Brief Summary
React Server Actions는 React Server Components(RSC) 환경에서 데이터를 조작(Mutate)하기 위해 사용되는 메커니즘으로, 함수 상단에 `"use server"` 프라그마를 선언하여 정의합니다 [1, 2]. 개발자가 일반적인 로컬 함수처럼 클라이언트 이벤트 핸들러에서 호출하면, React가 내부적으로 이를 HTTP 엔드포인트로 변환하여 서버와의 단일 왕복(one round trip)만으로 작업을 처리합니다 [3-5]. 특히 폼(Form) 처리와 같은 단순한 데이터 전송 시나리오에서 뛰어난 개발 편의성과 효율성을 제공합니다 [6].
## 📖 Core Content