Files
lintujamaslo/src/components/NotFound.tsx
2021-12-06 20:01:48 +02:00

10 lines
197 B
TypeScript

import "./NotFound.scss";
export const NotFound = () => {
return (
<section>
<h1>Page not found</h1>
<p>Check the link address...</p>
</section>
)
}