generated from nhcarrigan/template
feat: initial prototype works
I can log in and create a book! Woo!
This commit is contained in:
@@ -1,3 +1,24 @@
|
||||
import { Route } from '@angular/router';
|
||||
|
||||
export const appRoutes: Route[] = [];
|
||||
export const appRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
loadComponent: () => import('./components/home/home.component').then(m => m.HomeComponent)
|
||||
},
|
||||
{
|
||||
path: 'games',
|
||||
loadComponent: () => import('./components/games/games-list.component').then(m => m.GamesListComponent)
|
||||
},
|
||||
{
|
||||
path: 'books',
|
||||
loadComponent: () => import('./components/books/books-list.component').then(m => m.BooksListComponent)
|
||||
},
|
||||
{
|
||||
path: 'music',
|
||||
loadComponent: () => import('./components/music/music-list.component').then(m => m.MusicListComponent)
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
redirectTo: ''
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user