You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
400 B
TypeScript
9 lines
400 B
TypeScript
// frontend/app/calendar/[[...slug]]/page.tsx — 일정 페이지 (옵셔널 캐치올: /calendar, /calendar/<id>)
|
|
// <id> 세그먼트는 CalendarClient 가 useParams() 로 읽어 해당 일정으로 이동·오픈한다.
|
|
import "@/styles/calendar.css";
|
|
import { CalendarClient } from "@/components/calendar/CalendarClient";
|
|
|
|
export default function CalendarPage() {
|
|
return <CalendarClient />;
|
|
}
|