|
12345678910111213141516 |
- import { Component, OnInit } from '@angular/core';
-
- @Component({
- selector: 'app-widgets-holder',
- templateUrl: './widgets-holder.component.html',
- styleUrls: ['./widgets-holder.component.scss']
- })
- export class WidgetsHolderComponent implements OnInit {
- selected_nav: string = 'dashboard';
-
- constructor() { }
-
- ngOnInit() {
- }
-
- }
|