- constants에 GROUP_INFO 상수 추가 (데뷔일, 팬덤명) - PC Home에서 멤버 수 동적 계산 (API 기반) - mobile/Layout.jsx 컴포넌트 분리 (Header.jsx, BottomNav.jsx) - 미사용 유틸리티 함수는 관리자 페이지용으로 유지 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
486 B
JavaScript
11 lines
486 B
JavaScript
// 레이아웃
|
|
export { default as Layout } from './Layout';
|
|
export { default as Header } from './Header';
|
|
export { default as BottomNav } from './BottomNav';
|
|
|
|
// 일정 컴포넌트
|
|
export { default as Calendar } from './Calendar';
|
|
export { default as ScheduleCard } from './ScheduleCard';
|
|
export { default as ScheduleListCard } from './ScheduleListCard';
|
|
export { default as ScheduleSearchCard } from './ScheduleSearchCard';
|
|
export { default as BirthdayCard } from './BirthdayCard';
|