opt-cc/static/src/app/pub/decoration-overview/decoration-panel/decoration-panel.component.ts

21 lines
455 B
TypeScript

import {Component, Input} from '@angular/core';
import {Decoration} from '../../../models/model-interfaces';
import {Fraction} from '../../../utils/fraction.enum';
@Component({
selector: 'cc-decoration-panel',
templateUrl: './decoration-panel.component.html',
styleUrls: ['./decoration-panel.component.css']
})
export class DecorationPanelComponent {
@Input() decoration: Decoration;
readonly fraction = Fraction;
constructor() {
}
}