feat: implement basic dice frontend funcionality
This commit is contained in:
parent
dae835cbfa
commit
a62d2092b3
5 changed files with 203 additions and 0 deletions
|
@ -61,4 +61,9 @@ export const routes: Routes = [
|
|||
loadComponent: () => import('./feature/lootboxes/lootbox-opening/lootbox-opening.component'),
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
{
|
||||
path: 'game/dice',
|
||||
loadComponent: () => import('./feature/game/dice/dice.component').then(m => m.DiceComponent),
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
];
|
||||
|
|
Reference in a new issue