New dashboard look & feel
[src/xds/xds-agent.git] / webapp / src / app / pages / config / config-global / config-global.component.ts
1 import { Component, OnInit } from '@angular/core';
2
3 import { ConfigService, IConfig } from '../../../@core-xds/services/config.service';
4
5 @Component({
6   selector: 'xds-config-global',
7   styleUrls: ['./config-global.component.scss'],
8   templateUrl: './config-global.component.html',
9 })
10 export class ConfigGlobalComponent implements OnInit {
11
12   public configFormChanged = false;
13
14   constructor(
15     private configSvr: ConfigService,
16   ) {
17   }
18
19   ngOnInit() {
20   }
21
22   onSubmit() {
23   }
24 }
25