mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-03 11:29:28 -05:00
17 lines
318 B
TypeScript
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
|
|
}
|