source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/preview-question-full/preview-question-full.component.ts@ 59d860c

dev
Last change on this file since 59d860c was 59d860c, checked in by Стојков Марко <mst@…>, 3 years ago

Asking question has a steper to preview the question

  • Property mode set to 100644
File size: 541 bytes
Line 
1import { Component, Input, OnInit } from '@angular/core';
2import { QuestionStateViewModel } from 'src/app/shared-app/models';
3import { ButtonType } from '../../generic/button/button.models';
4
5@Component({
6 selector: 'app-preview-question-full',
7 templateUrl: './preview-question-full.component.html',
8 styleUrls: ['./preview-question-full.component.scss']
9})
10export class PreviewQuestionFullComponent implements OnInit {
11 @Input() question?: QuestionStateViewModel;
12 ButtonType = ButtonType;
13 constructor() {}
14
15 ngOnInit(): void {}
16}
Note: See TracBrowser for help on using the repository browser.