General Angular component structure of the Dashlot template src Folder.
Root:shared/layouts/main-layout.
import { Component, ElementRef, Renderer2 } from '@angular/core'; import { Menu, NavService } from '../../services/nav.service'; @Component({ selector: 'app-main-layout', templateUrl: './main-layout.component.html', styleUrl: './main-layout.component.scss', }) export class MainLayoutComponent { ... }