mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
17 lines
311 B
JavaScript
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
|