2022-05-08 09:12:29 -07:00

19 lines
367 B
TypeScript

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
@Input()
loading: boolean = false
ngOnInit(): void {}
}