⚒️ Create 404 page.

This commit is contained in:
pheralb 2022-06-24 13:30:49 +01:00
parent 4f3bd413ec
commit 5076881f71

9
src/pages/404.tsx Normal file
View File

@ -0,0 +1,9 @@
import React from "react";
type Props = {};
const Error = (props: Props) => {
return <div>Error 404</div>;
};
export default Error;