Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export async function getServerSideProps() {
// We will use this route to simulate a route cancellation error
// by clicking its link twice in rapid succession
await new Promise((resolve) => setTimeout(resolve, 5000))
return { props: {} }
}
export default function Page() {
return null
}