mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import type { ErrorProps } from "next/error";
|
|
|
|
const PageError = ({ statusCode = 0 }: ErrorProps): React.ReactElement => (
|
|
<>Error status code: {statusCode}</>
|
|
);
|
|
|
|
export default PageError;
|