7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { type ErrorProps } from "next/error";
|
|
|
|
const PageError = ({ statusCode = 0 }: ErrorProps): React.ReactElement => (
|
|
<>Error status code: {statusCode}</>
|
|
);
|
|
|
|
export default PageError;
|