rsnext/test/integration/client-navigation/pages/throw-undefined.js

11 lines
211 B
JavaScript
Raw Normal View History

function ThrowUndefined(props) {
return <div>throw-undefined</div>
}
ThrowUndefined.getInitialProps = () => {
// eslint-disable-next-line no-throw-literal
throw undefined
}
export default ThrowUndefined