diff --git a/src/app/components/scan-loading-screen/scan-loading-screen.html b/src/app/components/scan-loading-screen/scan-loading-screen.html new file mode 100644 index 0000000..e192e46 --- /dev/null +++ b/src/app/components/scan-loading-screen/scan-loading-screen.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/components/scan-loading-screen/scan-loading-screen.scss b/src/app/components/scan-loading-screen/scan-loading-screen.scss new file mode 100644 index 0000000..0511e85 --- /dev/null +++ b/src/app/components/scan-loading-screen/scan-loading-screen.scss @@ -0,0 +1,6 @@ +:host { + display: flex; + height: 100%; + position: absolute; + width: 100%; +} diff --git a/src/app/components/scan-loading-screen/scan-loading-screen.spec.ts b/src/app/components/scan-loading-screen/scan-loading-screen.spec.ts new file mode 100644 index 0000000..4717f75 --- /dev/null +++ b/src/app/components/scan-loading-screen/scan-loading-screen.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ScanLoadingScreen } from './scan-loading-screen'; + +describe('ScanLoadingScreen', () => { + let component: ScanLoadingScreen; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ScanLoadingScreen] + }) + .compileComponents(); + + fixture = TestBed.createComponent(ScanLoadingScreen); + component = fixture.componentInstance; + await fixture.whenStable(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/scan-loading-screen/scan-loading-screen.ts b/src/app/components/scan-loading-screen/scan-loading-screen.ts new file mode 100644 index 0000000..806990c --- /dev/null +++ b/src/app/components/scan-loading-screen/scan-loading-screen.ts @@ -0,0 +1,12 @@ +import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; + +@Component({ + selector: 'app-scan-loading-screen', + imports: [], + templateUrl: './scan-loading-screen.html', + styleUrl: './scan-loading-screen.scss', + schemas: [CUSTOM_ELEMENTS_SCHEMA] +}) +export class ScanLoadingScreen { + +}