Skip to content

Commit

Permalink
Redirect to 404 Page - working (reactplay#848)
Browse files Browse the repository at this point in the history
* Added Tenzies Games

It's Roll dice game Where all Dice should be same, Click each die to freeze it at its current value between rolls.

* [Added] All Instruction for tenzies game are added to readme file & [Update] Style Class name

I have added all about my game tenzies into readme file, also add Implementation on it.

Style class name changed.

* Redirect to 404 Page

Co-authored-by: Tapas Adhikary <[email protected]>
  • Loading branch information
AbhiPatel10 and atapas committed Jan 4, 2023
1 parent 5228f2b commit 18f9c2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/common/routing/RouteDefs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import {
PlayIdeas,
CreatePlay,
PlayCreated,
TechStack
TechStack,
PageNotFound
} from 'common';
import PlayList from 'common/playlists/PlayList';
import { BrowserRouter, Route, Routes } from 'react-router-dom';
Expand Down Expand Up @@ -40,6 +41,7 @@ const RouteDefs = () => {
<Route element={<Home />} path="/" />
<Route element={<TechStack />} path="/tech-stacks" />
<Route element={<CreatePlay />} path="/editplay/:username/:playname" />
<Route element={<PageNotFound />} path="*" />
<Route element={<App />} path="/plays">
<Route index element={<PlayList />} />
<Route exact element={<CreatePlay />} path="create" />
Expand Down

0 comments on commit 18f9c2c

Please sign in to comment.