1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/wmr/public/pages/_404.js

9 lines
131 B
JavaScript
Raw Normal View History

2021-04-20 19:11:14 +09:00
const NotFound = () => (
<section>
<h1>404: Not Found</h1>
<p>It's gone :(</p>
</section>
);
export default NotFound;