Intial general structure of source code and page.

This commit is contained in:
codevictory
2021-11-11 21:03:23 +02:00
parent 2581adce4d
commit e0d29f173d
19 changed files with 249 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
import "./styles/notFound.css";
export const NotFound = () => {
return (
<article>
<h1>Page not found</h1>
<p>Check the link address...</p>
</article>
)
}