my-app/
├── android/ # 네이티브 안드로이드 코드
├── ios/ # 네이티브 iOS 코드
├── src/
│ ├── assets/ # 정적 자원
│ │ ├── fonts/ # 폰트 파일
│ │ └── images/ # 이미지 리소스
│ ├── components/ # 공통 UI 컴포넌트
│ │ ├── atoms/ # Atomic Design 기반 기본 요소
│ │ └── molecules/ # 복합 컴포넌트
│ ├── constants/ # 상수 정의
│ ├── contexts/ # React Context 모음
│ ├── features/ # 기능 모듈
│ ├── hooks/ # 커스텀 훅
│ ├── navigation/ # 네비게이션 설정
│ ├── screens/ # 화면 단위 컴포넌트
│ ├── services/ # API 서비스 계층
│ ├── store/ # 상태 관리(Redux 등)
│ ├── theme/ # 디자인 시스템
│ ├── utils/ # 유틸리티 함수
│ └── App.tsx # 진입점
└── package.json
features/
└── user-profile/
├── components/ # 모듈 전용 컴포넌트
├── hooks/ # 모듈 전용 훅
├── types/ # 타입 정의
├── api/ # API 엔드포인트
├── store/ # 로컬 상태 관리
└── index.ts # 공개 API