mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-03 09:41:08 +00:00
17 lines
358 B
TypeScript
17 lines
358 B
TypeScript
import {Component, OnInit, ViewEncapsulation} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-default-layout',
|
|
encapsulation: ViewEncapsulation.None,
|
|
templateUrl: './default-layout.component.html',
|
|
styleUrls: ['./default-layout.component.css']
|
|
})
|
|
export class DefaultLayoutComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|