Nach langem wieder committed
This commit is contained in:
0
src/app/notfound/notfound.component.css
Normal file
0
src/app/notfound/notfound.component.css
Normal file
2
src/app/notfound/notfound.component.html
Normal file
2
src/app/notfound/notfound.component.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Seite wurde nicht gefunden!</h3>
|
||||
|
25
src/app/notfound/notfound.component.spec.ts
Normal file
25
src/app/notfound/notfound.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { NotfoundComponent } from './notfound.component';
|
||||
|
||||
describe('NotfoundComponent', () => {
|
||||
let component: NotfoundComponent;
|
||||
let fixture: ComponentFixture<NotfoundComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ NotfoundComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(NotfoundComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
15
src/app/notfound/notfound.component.ts
Normal file
15
src/app/notfound/notfound.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-notfound',
|
||||
templateUrl: './notfound.component.html',
|
||||
styleUrls: ['./notfound.component.css']
|
||||
})
|
||||
export class NotfoundComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user