From f3c1a93c051b24a3bea9b629243f92e140100288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=AC=EC=9C=A0=EC=A7=84?= Date: Sat, 27 Jun 2026 18:50:21 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20Component=20Pattern=20Props=20type=20?= =?UTF-8?q?=EA=B7=9C=EC=B9=99=20Code=20Conventions=EC=97=90=20=EB=A7=9E?= =?UTF-8?q?=EA=B2=8C=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index b36aa6de..f289bf53 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -52,7 +52,7 @@ All `app/**/page.tsx` route files use default exports: - Use `@dds` for UI primitives (Flex, Button, Input, Body1/2/3, Icon, etc.) - Use Tailwind CSS via `className`; use `cn()` for conditional classes -- Props type: use `Props` +- Props type: use `Props` for single-props components; use `{DomainName}Props` (e.g. `FeedCardProps`) when multiple props types exist in the same file or domain ```tsx 'use client';