angular.src.app.app-routing.module.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generator-angular-skeletons Show documentation
Show all versions of generator-angular-skeletons Show documentation
Angular Skeletons module of the Generator project
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
/**
* auto generated app routing module ts file
*
write modifications between specific code marks
*
processed by skeleton-generator
*/
const routes: Routes = [
/* Specific Code Start */
/* Specific Code End */
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }