1. 개념 요약


2. 배경 지식

React 기본 문법 (Parameter)


3. 상세 설명


3-1. Page Router 페이지 컴포넌트

// pages/posts/[id].tsx
export async function getStaticProps({ params }) {
  return { props: { id: params.id } };
}

export default function PostPage({ id }) {
  return <div>Post ID: {id}</div>;
}