Skip to content

页面

耶和博

354字约1分钟

2024-08-10

Pages

Pages是对应于特定路由的唯一UI。您可以通过在page.js文件中默认导出一个组件来定义页面。

例如,要创建您的index页面,在app目录中添加page.js文件:

page.js特殊文件

app/page.tsx
// `app/page.tsx` is the UI for the `/` URL
export default function Page() {
  return <h1>HelloHome page!</h1>
}

然后,要创建更多页面,创建一个新文件夹并在其中添加page.js文件。例如,要为/dashboard路由创建一个页面,创建一个名为dashboard的新文件夹,并在其中添加page.js文件:

app/dashboard/page.tsx
// `app/dashboard/page.tsx` is the UI for the `/dashboard` URL
export default function Page() {
  return <h1>Hello, Dashboard Page!</h1>
}

提示