Toggle navigation
Toggle navigation
This project
Loading...
Sign in
황선혁
/
weather_chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Eric Whale
2022-06-03 11:18:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ef7ca84b921696f95d2920c5c0c366849f2314f4
ef7ca84b
1 parent
48b9e238
Add notfound page
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
client/src/routes/notfound.jsx
client/src/routes/notfound.jsx
0 → 100644
View file @
ef7ca84
import
{
Link
}
from
"react-router-dom"
;
function
Notfound
()
{
return
(
<>
<
h1
>
404: Page Not Found
</
h1
>
<
h2
>
<
Link
to=
"/"
>
back to home
</
Link
>
</
h2
>
</>
);
}
export
default
Notfound
;
Please
register
or
login
to post a comment