ngx-admin/src/app/auth/login.module.ts
2020-06-03 14:21:26 +07:00

34 lines
No EOL
812 B
TypeScript

/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { NbAuthModule } from '@nebular/auth';
import { NbAlertModule, NbButtonModule, NbCheckboxModule, NbInputModule } from '@nebular/theme';
import { LoginComponent } from './login.component';
import { AuthRoutingModule } from './login-routing.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
NbAlertModule,
NbInputModule,
NbButtonModule,
NbCheckboxModule,
AuthRoutingModule,
NbAuthModule,
],
declarations: [
LoginComponent,
],
})
export class AuthModule {
}