Skip to content

Instantly share code, notes, and snippets.

@zkmark
Created October 8, 2019 01:28
Show Gist options
  • Save zkmark/87c8360e119fafc13e9740c979451dd5 to your computer and use it in GitHub Desktop.
Save zkmark/87c8360e119fafc13e9740c979451dd5 to your computer and use it in GitHub Desktop.
Angular routing module
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PagesblankRoutingModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment