bliss/web/src/pages/404.tsx

9 lines
157 B
TypeScript

import { NotFoundTitle } from '@pages/404Page';
import React from 'react';
const NotFound = () => {
return <NotFoundTitle />;
};
export default NotFound;