1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/pages/500.tsx
2022-02-15 20:05:43 +07:00

7 lines
173 B
TypeScript

import { NotFoundLayout } from '~/layouts/NotFoundLayout';
const InternalServerErrorPage = () => {
return <NotFoundLayout />;
};
export default InternalServerErrorPage;