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

19 lines
367 B
TypeScript
Raw Normal View History

import { Component, Input, OnInit } 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
})
export class WidgetFrameComponent implements OnInit {
constructor() {}
2020-11-22 22:35:39 +01:00
@Input()
title: string
@Input()
loading: boolean = false
ngOnInit(): void {}
2020-11-22 22:35:39 +01:00
}