create loading screen component

This commit is contained in:
cyber-dream 2022-10-31 21:50:50 +03:00
parent f24bda4cfe
commit 4c50f26050
4 changed files with 38 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
templateUrl: './loading-screen.component.html',
styleUrls: ['./loading-screen.component.scss']
})
export class LoadingScreenComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}