import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-dashboard', template: '', }) export class SimpleLayoutComponent implements OnInit { constructor() { } ngOnInit(): void { } }