2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2018-09-06 07:14:55 +02:00
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import { LoginComponent } from './components/login-wrapper/login.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
2018-09-06 07:14:55 +02:00
|
|
|
import { LoginMaskComponent } from './components/login-mask/login-mask.component';
|
|
|
|
import { LoginLegalNoticeComponent } from './components/login-legal-notice/login-legal-notice.component';
|
|
|
|
import { LoginPrivacyPolicyComponent } from './components/login-privacy-policy/login-privacy-policy.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2018-09-06 07:14:55 +02:00
|
|
|
imports: [CommonModule, RouterModule, SharedModule],
|
|
|
|
declarations: [LoginComponent, LoginMaskComponent, LoginLegalNoticeComponent, LoginPrivacyPolicyComponent]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class LoginModule {}
|