Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
268 Bytes
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>
}