ff75c8ce2f
User Profile info, no game before login/register, menu bar --------- Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de> Co-authored-by: shahdlala66 <shahd.lala66@gmail.com> Reviewed-on: #2
12 lines
463 B
TypeScript
12 lines
463 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { GameComponent } from './pages/game/game.component';
|
|
import { WelcomeComponent } from './pages/welcome/welcome.component';
|
|
import { ProfileComponent } from './pages/profile/profile.component';
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', component: WelcomeComponent },
|
|
{ path: 'profile', component: ProfileComponent },
|
|
{ path: 'game/:gameId', component: GameComponent },
|
|
{ path: '**', redirectTo: '' }
|
|
];
|