mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import React, { FC } from "react";
|
|
import PageLayout from "../layouts/PageLayout";
|
|
import { Header } from "../components/Header";
|
|
|
|
interface IProps {}
|
|
export const NotFoundPage: FC<IProps> = () => {
|
|
return (
|
|
<PageLayout
|
|
header={<Header title="Error page" description="Something went wrong" />}
|
|
content={<p>error</p>}
|
|
/>
|
|
);
|
|
};
|