mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
19 lines
367 B
TypeScript
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 {}
|
|
}
|