modular dashboard

This commit is contained in:
Jonas Winkler
2020-11-22 22:35:39 +01:00
parent 4b47f4929e
commit fa5df5d28e
19 changed files with 288 additions and 118 deletions

View File

@@ -0,0 +1,18 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-widget-frame',
templateUrl: './widget-frame.component.html',
styleUrls: ['./widget-frame.component.scss']
})
export class WidgetFrameComponent implements OnInit {
constructor() { }
@Input()
title: string
ngOnInit(): void {
}
}