almost view done

This commit is contained in:
rubikscraft
2022-02-28 23:18:07 +01:00
parent 7a3f62ac54
commit 6bae774ad2
31 changed files with 926 additions and 505 deletions

View File

@@ -0,0 +1,16 @@
import { Component, Input } from '@angular/core';
@Component({
selector: 'copy-field',
templateUrl: './copy-field.component.html',
styleUrls: ['./copy-field.component.scss'],
})
export class CopyFieldComponent {
// Two paramets: name, value
@Input() name: string;
@Input() value: string;
public copy() {
}
}