mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-06-07 04:19:53 +00:00
12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import React from 'react'
|
|
import Error from './_error'
|
|
|
|
export default class E500 extends React.Component {
|
|
|
|
public render() {
|
|
return(
|
|
<Error statusCode={500} />
|
|
)
|
|
}
|
|
}
|