Skip to content

Instantly share code, notes, and snippets.

@aliomattux
Created January 26, 2021 13:23
Show Gist options
  • Save aliomattux/76323dc105fd2796a02a88d79d2f0968 to your computer and use it in GitHub Desktop.
Save aliomattux/76323dc105fd2796a02a88d79d2f0968 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { LoginComponent } from './login.component';
import { FormsModule } from '@angular/forms';
export const routes: Routes = [
{
path: '',
component: LoginComponent,
},
];
@NgModule({
imports: [RouterModule.forChild(routes), FormsModule],
exports: [RouterModule],
})
export class NgxAuthRoutingModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment