remove old component

This commit is contained in:
garrettmills 2020-02-08 03:56:42 -06:00
parent 98a95a60f1
commit d474f9ef83
4 changed files with 0 additions and 41 deletions

View File

@ -1,3 +0,0 @@
<p>
paragraph works!
</p>

View File

@ -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<ParagraphComponent>;
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();
});
});

View File

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