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
367 B
TypeScript
9 lines
367 B
TypeScript
// frontend/app/tasks/[[...slug]]/page.tsx — 작업 페이지 (옵셔널 캐치올: /tasks, /tasks/<id>)
|
|
// <id> 세그먼트는 TasksClient 가 useParams() 로 읽어 해당 작업 상세를 바로 연다.
|
|
import "@/styles/tasks.css";
|
|
import { TasksClient } from "@/components/tasks/TasksClient";
|
|
|
|
export default function TasksPage() {
|
|
return <TasksClient />;
|
|
}
|