argos/dmp-frontend/src/app/unauthorized/unauthorized.module.ts

28 lines
621 B
TypeScript
Raw Normal View History

2017-12-18 16:55:12 +01:00
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { UnauthorizedComponent } from './unauthorized.component';
import { UnauthorizedRoutes } from './unauthorized.routes';
2018-10-05 17:00:54 +02:00
import { SharedModule } from '../shared/shared.module';
2017-12-18 16:55:12 +01:00
@NgModule({
2018-10-05 17:00:54 +02:00
imports: [
CommonModule,
FormsModule,
HttpClientModule,
UnauthorizedRoutes,
SharedModule
],
2017-12-18 16:55:12 +01:00
2018-10-05 17:00:54 +02:00
declarations: [
UnauthorizedComponent
],
2017-12-18 16:55:12 +01:00
2018-10-05 17:00:54 +02:00
exports: [
UnauthorizedComponent
]
2017-12-18 16:55:12 +01:00
})
export class UnauthorizedModule { }