2019-07-15 18:14:27 +02:00
|
|
|
/* Common Component of deposit for both research data & ppublications*/
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import {PiwikServiceModule} from '../utils/piwik/piwikService.module';
|
|
|
|
import {HelperModule} from '../utils/helper/helper.module';
|
|
|
|
import {Schema2jsonldModule} from '../sharedComponents/schema2jsonld/schema2jsonld.module';
|
|
|
|
import { SEOServiceModule } from '../sharedComponents/SEO/SEOService.module';
|
|
|
|
import {DepositFirstPageComponent} from "./depositFirstPage.component";
|
2020-04-27 14:54:48 +02:00
|
|
|
import {BreadcrumbsModule} from "../utils/breadcrumbs/breadcrumbs.module";
|
2019-07-15 18:14:27 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
RouterModule,
|
|
|
|
PiwikServiceModule,
|
|
|
|
HelperModule,
|
2020-04-27 14:54:48 +02:00
|
|
|
Schema2jsonldModule, SEOServiceModule, BreadcrumbsModule
|
2019-07-15 18:14:27 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DepositFirstPageComponent
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
DepositFirstPageComponent
|
|
|
|
],
|
2019-07-16 13:24:13 +02:00
|
|
|
providers: []
|
2019-07-15 18:14:27 +02:00
|
|
|
})
|
|
|
|
export class DepositFirstPageModule { }
|