1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added 500 page

This commit is contained in:
Fedor Katurov 2022-02-15 20:05:43 +07:00
parent 07b4874f69
commit 83065e6bfd
2 changed files with 35 additions and 18 deletions

7
src/pages/500.tsx Normal file
View file

@ -0,0 +1,7 @@
import { NotFoundLayout } from '~/layouts/NotFoundLayout';
const InternalServerErrorPage = () => {
return <NotFoundLayout />;
};
export default InternalServerErrorPage;