react-code-dataset
/
next.js
/test
/e2e
/app-dir
/app-prefetch
/app
/prefetch-auto-route-groups
/(dashboard)
/page.tsx
| import { fetchCount, fetchData } from '../fetch-data' | |
| export default async function Home() { | |
| const data = await fetchData() | |
| return ( | |
| <h1> | |
| Dashboard {data} | |
| <div> | |
| Fetch Count: <span id="count">{fetchCount}</span> | |
| </div> | |
| </h1> | |
| ) | |
| } | |