2026-04-13 11:17:36 +00:00

13 lines
263 B
JavaScript

import React from 'react';
import s from './NotFound.module.scss';
const NotFound = () => (
<div className={s.root}>
<h1 className={s.title}>404</h1>
<p>Sorry, the page you were trying to view does not exist.</p>
</div>
);
export default NotFound;