Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 4, 2019 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3c5f5c17ea8d9bf544b2df6b153b107c to your computer and use it in GitHub Desktop.
Save parzibyte/3c5f5c17ea8d9bf544b2df6b153b107c to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
// En un momento configuramos las rutas...
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment