import {Component, OnInit} from '@angular/core'; @Component({ selector: 'app-navbar-layout', template: `
`, styles: [` .main-container { min-height: 100vh; } `] }) export class NavbarLayoutComponent implements OnInit { constructor() { } ngOnInit() { } }