diff options
Diffstat (limited to 'src/components/not_found')
| -rw-r--r-- | src/components/not_found/NotFound.jsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/not_found/NotFound.jsx b/src/components/not_found/NotFound.jsx new file mode 100644 index 0000000..71ed075 --- /dev/null +++ b/src/components/not_found/NotFound.jsx @@ -0,0 +1,8 @@ +import React from "react"; + + +export default function NotFound() { + return ( + <div>Not Found!</div> + ) +} |
