Skip to content

Instantly share code, notes, and snippets.

@aliomattux
Created January 26, 2021 13:22
Show Gist options
  • Save aliomattux/1eea8c2a4ce1537341f1156172fa19a0 to your computer and use it in GitHub Desktop.
Save aliomattux/1eea8c2a4ce1537341f1156172fa19a0 to your computer and use it in GitHub Desktop.
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