mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
export default async function Page() {
|
|
await fetch('https://next-data-api-endpoint.vercel.app/api/random')
|
|
return <p>hello world</p>
|
|
}
|