14 lines
344 B
TypeScript
14 lines
344 B
TypeScript
|
||
import { Container, Button } from "react-bootstrap";
|
||
const NotFound = () => {
|
||
return (
|
||
<section className="not-found-page">
|
||
<Container className="page">
|
||
<p className="error-message">⚠️ Cette page n'existe pas.</p>
|
||
</Container>
|
||
</section>
|
||
);
|
||
};
|
||
|
||
export default NotFound;
|