|
- 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 = 'more';
-
- constructor() { }
-
- ngOnInit() {
- }
-
- }
|