17 lines
441 B
TypeScript
17 lines
441 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
import { FlightsMapStartPageComponent } from './components/flights-map-start-page/flights-map-start-page.component';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: FlightsMapStartPageComponent
|
|
}
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class FlightsMapRoutingModule { }
|