2022-03-11 11:58:19 -08:00

16 lines
328 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
ngOnInit(): void {}
}