funky-framadate-front/src/app/features/administration/form/kind-select/kind-select.component.ts

21 lines
505 B
TypeScript
Raw Normal View History

2021-02-04 16:14:07 +01:00
import { Component, Input, OnInit } from '@angular/core';
import { Poll } from '../../../../core/models/poll.model';
import { FormGroup } from '@angular/forms';
@Component({
selector: 'app-kind-select',
templateUrl: './kind-select.component.html',
styleUrls: ['./kind-select.component.scss'],
})
export class KindSelectComponent implements OnInit {
2021-03-27 21:29:06 +01:00
public template_questions_answers = true;
2021-02-04 16:14:07 +01:00
@Input()
public poll?: Poll;
@Input()
public form: FormGroup;
constructor() {}
ngOnInit(): void {}
}