Add localization
Add pages
This commit is contained in:
@@ -1,3 +1,21 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import {AppComponent} from "./app.component";
|
||||
import {DirectionsPageComponent} from "./directions-page/directions-page.component";
|
||||
import {LandingPageComponent} from "./landing-page/landing-page.component";
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const routes: Routes = [
|
||||
|
||||
{
|
||||
path: 'directions',
|
||||
component: DirectionsPageComponent
|
||||
},
|
||||
{
|
||||
path: '',
|
||||
component: LandingPageComponent,
|
||||
pathMatch: 'full'
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
redirectTo: ''
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user