Michael Shamoon 20e1779313 lint frontend
2022-12-15 23:36:01 -08:00

17 lines
318 B
TypeScript

import { Component, Input } from '@angular/core'
@Component({
selector: 'app-widget-frame',
templateUrl: './widget-frame.component.html',
styleUrls: ['./widget-frame.component.scss'],
})
export class WidgetFrameComponent {
constructor() {}
@Input()
title: string
@Input()
loading: boolean = false
}