93195cff1fcc896930b3a4b8348eb09a96255a21
[working/Evergreen.git] /
1 import {Component, Input} from '@angular/core';
2
3 /**
4  * A subfield that a user can edit, which will later be
5  * compiled into MARC
6  */
7
8 @Component({
9   selector: 'eg-marc-simplified-editor-subfield',
10   template: '<ng-template></ng-template>'
11 })
12 export class MarcSimplifiedEditorSubfieldComponent {
13
14   @Input() code: string;
15   @Input() defaultValue: string;
16
17 }