import { withRouter } from 'next/router' function RouterMethodSSR ({ router }) { if (typeof window === 'undefined') router.push('/a') return

Navigating...

} export default withRouter(RouterMethodSSR)