next.js/test/development/pages-dir/client-navigation/fixture/pages/throw-undefined.js
throw-undefined.js11 lines211 B
function ThrowUndefined(props) {
  return <div>throw-undefined</div>
}

ThrowUndefined.getInitialProps = () => {
  // eslint-disable-next-line no-throw-literal
  throw undefined
}

export default ThrowUndefined
Quest for Codev2.0.0
/
SIGN IN