Created
January 26, 2021 13:23
-
-
Save aliomattux/76323dc105fd2796a02a88d79d2f0968 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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