Created
January 26, 2021 13:22
-
-
Save aliomattux/1eea8c2a4ce1537341f1156172fa19a0 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 { CommonModule } from '@angular/common'; | |
import { NgModule } from '@angular/core'; | |
import { FormsModule } from '@angular/forms'; | |
import { RouterModule } from '@angular/router'; | |
import { NgxAuthRoutingModule } from './auth-routing.module'; | |
import { | |
NbAlertModule, | |
NbButtonModule, | |
NbCheckboxModule, | |
NbInputModule | |
} from '@nebular/theme'; | |
@NgModule({ | |
imports: [ | |
CommonModule, | |
FormsModule, | |
RouterModule, | |
NbAlertModule, | |
NbInputModule, | |
NbButtonModule, | |
NbCheckboxModule, | |
NgxAuthRoutingModule, | |
], | |
declarations: [ | |
], | |
}) | |
export class NgxAuthModule { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment