blob: 5546d1e20dbd6fa8f2ae567b5f008f389627305c (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React, {Fragment} from "react";
import styles from "./NotFound.css";
export default function NotFound() {
return (
<Fragment>
<p>Not found route!</p>
</Fragment>
);
}
|