feat(lootboxes): add lootbox selection feature and routes
This commit is contained in:
parent
bb1134abd3
commit
b58ceeeaab
8 changed files with 362 additions and 0 deletions
|
@ -26,4 +26,9 @@ export const routes: Routes = [
|
|||
loadComponent: () => import('./feature/game/slots/slots.component'),
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
{
|
||||
path: 'game/lootboxes',
|
||||
loadComponent: () => import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
];
|
||||
|
|
Reference in a new issue