From b69ecafbab45d6ce14145abddb822ae4f8f0195e Mon Sep 17 00:00:00 2001 From: Olu Amey Date: Sat, 11 Jan 2020 00:24:55 -0500 Subject: [PATCH] fix --- .../linkstart/linkstart.component.html | 3 +++ .../linkstart/linkstart.component.scss | 0 .../linkstart/linkstart.component.spec.ts | 27 +++++++++++++++++++ .../linkstart/linkstart.component.ts | 14 ++++++++++ .../pagestart/pagestart.component.html | 3 +++ .../pagestart/pagestart.component.scss | 0 .../pagestart/pagestart.component.spec.ts | 27 +++++++++++++++++++ .../pagestart/pagestart.component.ts | 14 ++++++++++ 8 files changed, 88 insertions(+) create mode 100644 src/app/components/linkstart/linkstart.component.html create mode 100644 src/app/components/linkstart/linkstart.component.scss create mode 100644 src/app/components/linkstart/linkstart.component.spec.ts create mode 100644 src/app/components/linkstart/linkstart.component.ts create mode 100644 src/app/components/pagestart/pagestart.component.html create mode 100644 src/app/components/pagestart/pagestart.component.scss create mode 100644 src/app/components/pagestart/pagestart.component.spec.ts create mode 100644 src/app/components/pagestart/pagestart.component.ts 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() {} + +}