UNPKG

better-npm-init

Version:

A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]

12 lines (9 loc) 375 B
import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { BeforeLoginComponent } from './before-login.component'; const routes: Routes = [{ path: '', component: BeforeLoginComponent }]; @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule], }) export class BeforeLoginRoutingModule {}