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