File size: 268 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import { fetchCached, getCachedData } from './data-fetching'
export default async function Loading() {
await fetchCached(
'https://next-data-api-endpoint.vercel.app/api/random?key=cachedpage'
)
await getCachedData('page')
return <main>loading...</main>
}
|