Files
paperless-ngx/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts

17 lines
318 B
TypeScript
Raw Normal View History

2022-12-15 22:48:16 -08:00
import { Component, Input } from '@angular/core'
2020-11-22 22:35:39 +01:00
@Component({
selector: 'app-widget-frame',
templateUrl: './widget-frame.component.html',
styleUrls: ['./widget-frame.component.scss'],
2020-11-22 22:35:39 +01:00
})
2022-12-15 22:48:16 -08:00
export class WidgetFrameComponent {
constructor() {}
2020-11-22 22:35:39 +01:00
@Input()
title: string
@Input()
loading: boolean = false
2020-11-22 22:35:39 +01:00
}