next.js/test/e2e/with-router/pages/router-method-ssr.js
router-method-ssr.js9 lines212 B
import { withRouter } from 'next/router'

function RouterMethodSSR({ router }) {
  if (typeof window === 'undefined') router.push('/a')
  return <p>Navigating...</p>
}

export default withRouter(RouterMethodSSR)
Quest for Codev2.0.0
/
SIGN IN