funky-framadate-front/src/app/pages/base-page/base-page.component.ts

19 lines
345 B
TypeScript
Raw Normal View History

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