You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
5 years ago
|
import React from 'react'
|
||
|
|
||
|
const Error = ({statusCode}) => (
|
||
|
<div>
|
||
|
<p>This page could not be found.</p>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
Error.getInitialProps = ({ res, err }) => {
|
||
|
const statusCode = res ? res.statusCode : err ? err.statusCode : 404
|
||
|
return { statusCode }
|
||
|
}
|
||
|
|
||
|
export default Error
|