Skip to content
Snippets Groups Projects
Commit 9545339b authored by Heinrich Marks's avatar Heinrich Marks 🌺
Browse files

add error-landing-page aka 404

parent 5ebaf75c
1 merge request!5Resolve "App Routing Component"
......@@ -5,11 +5,13 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from './/app-routing.module';
import { ErrorLandingPageComponent } from './error-landing-page/error-landing-page.component';
@NgModule({
declarations: [
AppComponent
AppComponent,
ErrorLandingPageComponent
],
imports: [
BrowserModule,
......
<p>
error-landing-page works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ErrorLandingPageComponent } from './error-landing-page.component';
describe('ErrorLandingPageComponent', () => {
let component: ErrorLandingPageComponent;
let fixture: ComponentFixture<ErrorLandingPageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ErrorLandingPageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ErrorLandingPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-error-landing-page',
templateUrl: './error-landing-page.component.html',
styleUrls: ['./error-landing-page.component.scss']
})
export class ErrorLandingPageComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment