added loading dialog component
This commit is contained in:
parent
8dbf568d79
commit
2898c3ee84
4 changed files with 36 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
<p>loading-dialog works!</p>
|
||||
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
|
@ -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 {
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue