refactored metadata views

This commit is contained in:
jonaswinkler 2020-12-13 14:56:44 +01:00
parent 5bea5e75c0
commit 3089b049cf
6 changed files with 76 additions and 48 deletions

View file

@ -0,0 +1,23 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-metadata-collapse',
templateUrl: './metadata-collapse.component.html',
styleUrls: ['./metadata-collapse.component.scss']
})
export class MetadataCollapseComponent implements OnInit {
constructor() { }
expand = false
@Input()
metadata
@Input()
title = "Metadata"
ngOnInit(): void {
}
}