23 lines
1.0 KiB
TypeScript
23 lines
1.0 KiB
TypeScript
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 404.tsx :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/06/18 12:06:43 by apommier #+# #+# */
|
|
/* Updated: 2023/06/18 12:06:58 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
import React from "react";
|
|
|
|
function PageNotFound() {
|
|
return (
|
|
<div>
|
|
<p>404 Page not found</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PageNotFound |