- CustomSelect.jsx 추출 → common/ (재사용 가능한 드롭다운) - TrackItem.jsx 추출 → album/ (트랙 입력 폼) - AlbumForm.jsx: 631줄 → 443줄 (188줄 감소) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
// 레이아웃
|
|
export * from './layout';
|
|
|
|
// 공통 컴포넌트
|
|
export * from './common';
|
|
|
|
// 스케줄 관련
|
|
export * from './schedule';
|
|
|
|
// 앨범 관련
|
|
export * from './album';
|