mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { NotFoundLayout } from '~/layouts/NotFoundLayout';
|
|
|
|
const InternalServerErrorPage = () => {
|
|
return <NotFoundLayout />;
|
|
};
|
|
|
|
export default InternalServerErrorPage;
|