added loading dialog component

This commit is contained in:
Chneemann 2024-05-30 19:59:36 +02:00
parent 8dbf568d79
commit 2898c3ee84
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1 @@
<p>loading-dialog works!</p>

View file

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

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-loading-dialog',
standalone: true,
imports: [],
templateUrl: './loading-dialog.component.html',
styleUrl: './loading-dialog.component.scss'
})
export class LoadingDialogComponent {
}