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() {} - -}