13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-dashboard',
|
||
|
template: '<router-outlet></router-outlet>',
|
||
|
})
|
||
|
export class SimpleLayoutComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void { }
|
||
|
}
|