10 lines
197 B
TypeScript
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>
|
|
)
|
|
} |