Browse Source

feat: also match if route ends in /

pull/2/head
Muthu Kumar 12 months ago
parent
commit
2802b630f7
Failed to extract signature
  1. 4
      src/index.tsx

4
src/index.tsx

@ -22,12 +22,16 @@ function App() {
case "/":
return <Home />;
case "/experience":
case "/experience/":
return <Exp />;
case "/projects":
case "/projects/":
return <Projects />;
case "/contact":
case "/contact/":
return <Contact />;
case "/live":
case "/live/":
return <Live />;
case "/blog":
case "/blog/":

Loading…
Cancel
Save