mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import React, { FC } from "react";
|
|
|
|
interface IProps {}
|
|
export const NotFoundPage: FC<IProps> = () => {
|
|
return (
|
|
<div className="section">
|
|
<p>error</p>
|
|
</div>
|
|
);
|
|
};
|