diff --git a/src/app/components/linkstart/linkstart.component.html b/src/app/components/linkstart/linkstart.component.html new file mode 100644 index 0000000..eab471e --- /dev/null +++ b/src/app/components/linkstart/linkstart.component.html @@ -0,0 +1,3 @@ +

+ linkstart works! +

diff --git a/src/app/components/linkstart/linkstart.component.scss b/src/app/components/linkstart/linkstart.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/linkstart/linkstart.component.spec.ts b/src/app/components/linkstart/linkstart.component.spec.ts new file mode 100644 index 0000000..63f94af --- /dev/null +++ b/src/app/components/linkstart/linkstart.component.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { LinkstartComponent } from './linkstart.component'; + +describe('LinkstartComponent', () => { + let component: LinkstartComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ LinkstartComponent ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(LinkstartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/linkstart/linkstart.component.ts b/src/app/components/linkstart/linkstart.component.ts new file mode 100644 index 0000000..12e1327 --- /dev/null +++ b/src/app/components/linkstart/linkstart.component.ts @@ -0,0 +1,14 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-linkstart', + templateUrl: './linkstart.component.html', + styleUrls: ['./linkstart.component.scss'], +}) +export class LinkstartComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +} diff --git a/src/app/components/pagestart/pagestart.component.html b/src/app/components/pagestart/pagestart.component.html new file mode 100644 index 0000000..cae90c2 --- /dev/null +++ b/src/app/components/pagestart/pagestart.component.html @@ -0,0 +1,3 @@ +

+ pagestart works! +

diff --git a/src/app/components/pagestart/pagestart.component.scss b/src/app/components/pagestart/pagestart.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/pagestart/pagestart.component.spec.ts b/src/app/components/pagestart/pagestart.component.spec.ts new file mode 100644 index 0000000..ba597e6 --- /dev/null +++ b/src/app/components/pagestart/pagestart.component.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PagestartComponent } from './pagestart.component'; + +describe('PagestartComponent', () => { + let component: PagestartComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ PagestartComponent ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(PagestartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/pagestart/pagestart.component.ts b/src/app/components/pagestart/pagestart.component.ts new file mode 100644 index 0000000..4b30d36 --- /dev/null +++ b/src/app/components/pagestart/pagestart.component.ts @@ -0,0 +1,14 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-pagestart', + templateUrl: './pagestart.component.html', + styleUrls: ['./pagestart.component.scss'], +}) +export class PagestartComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +}