mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
8 lines
131 B
JavaScript
8 lines
131 B
JavaScript
const NotFound = () => (
|
|
<section>
|
|
<h1>404: Not Found</h1>
|
|
<p>It's gone :(</p>
|
|
</section>
|
|
);
|
|
|
|
export default NotFound;
|