This commit is contained in:
Marces Zastrow
2025-01-17 13:27:12 +01:00
parent f65c71619e
commit 0e888ca258
6 changed files with 1109 additions and 72 deletions
+6 -1
View File
@@ -13,6 +13,7 @@ import Games from './pages/games.jsx';
import GameMasterPage from './pages/gameMasterPage.jsx';
import CreateItem from './pages/createItem.jsx';
import CreateCharacter from './pages/createCharacter.jsx';
import CreateNpc from './pages/createNpc.jsx';
import { UserProvider } from './context/UserContext.jsx';
function App() {
@@ -79,7 +80,11 @@ function App() {
path='/create-item'
element={<CreateItem isLoggedIn={isLoggedIn} />}
/>
<Route
path='/create-npc'
element={<CreateNpc isLoggedIn={isLoggedIn} />}
/>
</Routes>
</div>
</Router>