[web-app] 告警配置列表信息展示

This commit is contained in:
tomsun28
2021-12-12 10:33:27 +08:00
parent 4586eba054
commit 25bf425617
18 changed files with 522 additions and 16 deletions

View File

@@ -0,0 +1 @@
<p>alert-center works!</p>

View File

@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AlertCenterComponent } from './alert-center.component';
describe('AlertCenterComponent', () => {
let component: AlertCenterComponent;
let fixture: ComponentFixture<AlertCenterComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ AlertCenterComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(AlertCenterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,16 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-alert-center',
templateUrl: './alert-center.component.html',
styles: [
]
})
export class AlertCenterComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}