mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
|
import { Component, Input, OnInit } from '@angular/core';
|
||
|
|
||
|
import { Poll } from '../../../core/models/poll.model';
|
||
|
import { User } from '../../../core/models/user.model';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-answers',
|
||
|
templateUrl: './answers.component.html',
|
||
|
styleUrls: ['./answers.component.scss'],
|
||
|
})
|
||
|
export class AnswersComponent implements OnInit {
|
||
|
@Input() poll: Poll;
|
||
|
@Input() user: User;
|
||
|
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit(): void {}
|
||
|
}
|