2017-12-19 13:53:46 +01:00
|
|
|
/* This module contains all common components for all landing pages */
|
|
|
|
|
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import {ShowTitleComponent} from './showTitle.component';
|
|
|
|
import {AddThisComponent} from './addThis.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2024-02-28 15:45:23 +01:00
|
|
|
CommonModule, FormsModule, RouterModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
2024-04-16 12:25:54 +02:00
|
|
|
ShowTitleComponent, AddThisComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
2024-02-28 15:45:23 +01:00
|
|
|
providers:[],
|
2017-12-19 13:53:46 +01:00
|
|
|
exports: [
|
2024-04-16 12:25:54 +02:00
|
|
|
ShowTitleComponent, AddThisComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class LandingModule { }
|