6f084171dd
The initial new codebase from a template
12 lines
246 B
TypeScript
12 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 { }
|
|
}
|