mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-03 09:41:08 +00:00
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.css']
|
||
|
})
|
||
|
export class AppComponent implements OnInit {
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
}
|