]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/app/Routes.js
all the...small things
[alttp.git] / resources / js / app / Routes.js
index ca543ee7088b0de66fb6c85c89e39d0d34e05c4d..d9f276728d5d8a04534ac9e8ebc9fd68c8bf4d30 100644 (file)
@@ -13,6 +13,7 @@ import Schedule from '../pages/Schedule';
 import Technique from '../pages/Technique';
 import Techniques from '../pages/Techniques';
 import Tournament from '../pages/Tournament';
+import TwitchBot from '../pages/TwitchBot';
 import User from '../pages/User';
 
 const AppRoutes = ({ doLogout }) => <Routes>
@@ -72,6 +73,10 @@ const AppRoutes = ({ doLogout }) => <Routes>
                        element={<Technique basepath="tech" type="tech" />}
                />
                <Route path="tournaments/:id" element={<Tournament />} />
+               <Route
+                       path="twitch-bot"
+                       element={<TwitchBot />}
+               />
                <Route path="users/:id" element={<User />} />
                <Route path="/" element={<Front />} />
                <Route path="*" element={<Navigate to="/" />} />