1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/using-router/pages/error.js
Arunoda Susiripala 141c045c68 Make next/router a client only API. (#443)
* Prevent using 'next/router' APIs inside 'getInitialProps'

* Remove incorrect documentation.

* Make next/router a client only API.
2016-12-20 09:27:43 -08:00

17 lines
311 B
JavaScript

import React from 'react'
import Header from '../components/Header'
import Router from 'next/router'
const ErrorPage = ({ aa }) => (
<div>
<Header />
<p>This should not be rendered via SSR</p>
</div>
)
ErrorPage.getInitialProps = () => {
console.log(Router.pathname)
}
export default ErrorPage