added a welcome widget

This commit is contained in:
jonaswinkler
2020-12-06 01:25:12 +01:00
parent 805e3d51e8
commit e46353cee8
7 changed files with 61 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-welcome-widget',
templateUrl: './welcome-widget.component.html',
styleUrls: ['./welcome-widget.component.scss']
})
export class WelcomeWidgetComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}