created basic webApplication

This commit is contained in:
2022-10-20 01:46:30 +10:00
parent af6a09c582
commit ed15ca57f6
32 changed files with 1286 additions and 490 deletions

View File

@@ -0,0 +1 @@
<p>not-found works!</p>

View File

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

View File

@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-not-found',
template: `<h3>Страница не найдена.<h3>`
})
export class NotFoundComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}