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

17 lines
372 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { FormGroup } from '@angular/forms';
@Component({
selector: 'app-text-select',
templateUrl: './text-select.component.html',
styleUrls: ['./text-select.component.scss'],
})
export class TextSelectComponent implements OnInit {
@Input()
public form: FormGroup;
constructor() {}
ngOnInit(): void {}
}