2019-08-10 16:20:59 +02:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
|
|
|
import {ConfigService} from '../../config.service';
|
2019-08-09 15:14:23 +02:00
|
|
|
|
|
|
|
@Component({
|
2019-08-10 16:20:59 +02:00
|
|
|
selector: 'framadate-base-page',
|
|
|
|
templateUrl: './base-page.component.html',
|
|
|
|
styleUrls: ['./base-page.component.scss']
|
2019-08-09 15:14:23 +02:00
|
|
|
})
|
2019-08-09 17:43:23 +02:00
|
|
|
/**
|
|
|
|
* base page is aware of the state of the filling
|
|
|
|
*/
|
2019-08-09 15:14:23 +02:00
|
|
|
export class BasePageComponent implements OnInit {
|
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
constructor(private config: ConfigService) {
|
|
|
|
}
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
ngOnInit() {
|
|
|
|
}
|
2019-08-09 15:14:23 +02:00
|
|
|
|
|
|
|
}
|