2018-09-20 13:03:51 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule as AngularCommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { CommonRoutingModule } from './common-routing.module';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component';
|
|
|
|
import { StartComponent } from './components/start/start.component';
|
|
|
|
import { LegalNoticeComponent } from './components/legal-notice/legal-notice.component';
|
2018-11-07 08:43:48 +01:00
|
|
|
import { SearchComponent } from './components/search/search.component';
|
2019-01-19 21:55:06 +01:00
|
|
|
import { CountUsersComponent } from './components/count-users/count-users.component';
|
2018-09-20 13:03:51 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [AngularCommonModule, CommonRoutingModule, SharedModule],
|
2019-01-19 21:55:06 +01:00
|
|
|
declarations: [PrivacyPolicyComponent, StartComponent, LegalNoticeComponent, SearchComponent, CountUsersComponent]
|
2018-09-20 13:03:51 +02:00
|
|
|
})
|
|
|
|
export class CommonModule {}
|