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

19 lines
345 B
TypeScript

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
*/
export class BasePageComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}