funky-framadate-front/src/app/features/participation/feedback/feedback.component.ts

14 lines
298 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-feedback',
templateUrl: './feedback.component.html',
styleUrls: ['./feedback.component.scss'],
})
export class FeedbackComponent implements OnInit {
private isOpen = true;
constructor() {}
ngOnInit(): void {}
}