From d474f9ef83abb2ce1b25a87d9ae9dc0dc2352280 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sat, 8 Feb 2020 03:56:42 -0600 Subject: [PATCH] remove old component --- .../editor/paragraph/paragraph.component.html | 3 --- .../editor/paragraph/paragraph.component.scss | 0 .../paragraph/paragraph.component.spec.ts | 24 ------------------- .../editor/paragraph/paragraph.component.ts | 14 ----------- 4 files changed, 41 deletions(-) delete mode 100644 src/app/components/editor/paragraph/paragraph.component.html delete mode 100644 src/app/components/editor/paragraph/paragraph.component.scss delete mode 100644 src/app/components/editor/paragraph/paragraph.component.spec.ts delete mode 100644 src/app/components/editor/paragraph/paragraph.component.ts diff --git a/src/app/components/editor/paragraph/paragraph.component.html b/src/app/components/editor/paragraph/paragraph.component.html deleted file mode 100644 index b1c4c67..0000000 --- a/src/app/components/editor/paragraph/paragraph.component.html +++ /dev/null @@ -1,3 +0,0 @@ -

- paragraph works! -

diff --git a/src/app/components/editor/paragraph/paragraph.component.scss b/src/app/components/editor/paragraph/paragraph.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/components/editor/paragraph/paragraph.component.spec.ts b/src/app/components/editor/paragraph/paragraph.component.spec.ts deleted file mode 100644 index c0ffa47..0000000 --- a/src/app/components/editor/paragraph/paragraph.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { IonicModule } from '@ionic/angular'; - -import { ParagraphComponent } from './paragraph.component'; - -describe('ParagraphComponent', () => { - let component: ParagraphComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ ParagraphComponent ], - imports: [IonicModule.forRoot()] - }).compileComponents(); - - fixture = TestBed.createComponent(ParagraphComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - })); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/components/editor/paragraph/paragraph.component.ts b/src/app/components/editor/paragraph/paragraph.component.ts deleted file mode 100644 index 7cc1ff6..0000000 --- a/src/app/components/editor/paragraph/paragraph.component.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-paragraph', - templateUrl: './paragraph.component.html', - styleUrls: ['./paragraph.component.scss'], -}) -export class ParagraphComponent implements OnInit { - - constructor() { } - - ngOnInit() {} - -}