react-code-dataset
/
next.js
/test
/development
/app-dir
/react-performance-track
/app
/fetch
/page.tsx
| async function abstraction() { | |
| await fetch('https://next-data-api-endpoint.vercel.app/api/random') | |
| } | |
| export default async function FetchPage() { | |
| await abstraction() | |
| await fetch('https://next-data-api-endpoint.vercel.app/api/random') | |
| return <p>Done</p> | |
| } | |