Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react'
import App from 'next/app'
export default class MyApp extends App {
// find this
static async getInitialProps({ ctx }) {
const { query, pathname, asPath } = ctx
return { url: { query, pathname, asPath } }
}
render() {
const { Component, url } = this.props
return <Component url={url} />
}
}