mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
34 lines
No EOL
812 B
TypeScript
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 {
|
|
} |