mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
5 lines
101 B
JavaScript
5 lines
101 B
JavaScript
import React from "react";
|
|
|
|
const NotFound = () => <h1>404 Not found</h1>;
|
|
|
|
export default NotFound;
|