funky-framadate-front/src/app/features/administration/form/date-views/date-views.component.ts

14 lines
382 B
TypeScript
Raw Normal View History

2021-10-27 12:21:25 +02:00
import { Component, OnInit } from '@angular/core';
import { PollService } from '../../../../core/services/poll.service';
@Component({
selector: 'app-date-views',
templateUrl: './date-views.component.html',
styleUrls: ['./date-views.component.scss'],
})
export class DateViewsComponent implements OnInit {
constructor(public pollService: PollService) {}
ngOnInit(): void {}
}