Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
function ThrowUndefined(props) {
return <div>throw-undefined</div>
}
ThrowUndefined.getInitialProps = () => {
// eslint-disable-next-line no-throw-literal
throw undefined
}
export default ThrowUndefined