From 9267fb78e30674ab0a09403b8c6d40cfa6338ed1 Mon Sep 17 00:00:00 2001 From: Laura Glendenning Date: Wed, 4 Nov 2020 13:54:03 -0500 Subject: [PATCH] Remove code that was mistakenly left in public branch. --- .../src/app/component/home/home.component.css | 7 ------ .../app/component/home/home.component.html | 23 ----------------- .../app/component/home/home.component.spec.ts | 25 ------------------- .../src/app/component/home/home.component.ts | 20 --------------- 4 files changed, 75 deletions(-) delete mode 100644 frontend/annotation/src/app/component/home/home.component.css delete mode 100644 frontend/annotation/src/app/component/home/home.component.html delete mode 100644 frontend/annotation/src/app/component/home/home.component.spec.ts delete mode 100644 frontend/annotation/src/app/component/home/home.component.ts diff --git a/frontend/annotation/src/app/component/home/home.component.css b/frontend/annotation/src/app/component/home/home.component.css deleted file mode 100644 index e30d693..0000000 --- a/frontend/annotation/src/app/component/home/home.component.css +++ /dev/null @@ -1,7 +0,0 @@ -.btn { - width: 100%; - height: 100%; - white-space: normal; - border-radius: 20px; - border: 1px solid darkgrey; -} diff --git a/frontend/annotation/src/app/component/home/home.component.html b/frontend/annotation/src/app/component/home/home.component.html deleted file mode 100644 index e1dca78..0000000 --- a/frontend/annotation/src/app/component/home/home.component.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/frontend/annotation/src/app/component/home/home.component.spec.ts b/frontend/annotation/src/app/component/home/home.component.spec.ts deleted file mode 100644 index 490e81b..0000000 --- a/frontend/annotation/src/app/component/home/home.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { HomeComponent } from './home.component'; - -describe('HomeComponent', () => { - let component: HomeComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ HomeComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(HomeComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend/annotation/src/app/component/home/home.component.ts b/frontend/annotation/src/app/component/home/home.component.ts deleted file mode 100644 index 15bf5d0..0000000 --- a/frontend/annotation/src/app/component/home/home.component.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Component, OnInit } from "@angular/core"; - -import { PATHS } from "../../app.paths"; - -@Component({ - selector: "app-home", - templateUrl: "./home.component.html", - styleUrls: ["./home.component.css"] -}) -export class HomeComponent implements OnInit { - - public readonly PATHS = PATHS; - - constructor() { } - - ngOnInit() { - - } - -}