refactor: remove paragraph component
This commit is contained in:
@@ -1 +0,0 @@
|
||||
<p>paragraph works!</p>
|
||||
@@ -1,23 +0,0 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ParagraphComponent } from './paragraph.component';
|
||||
|
||||
describe('ParagraphComponent', () => {
|
||||
let component: ParagraphComponent;
|
||||
let fixture: ComponentFixture<ParagraphComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ParagraphComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ParagraphComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -1,12 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-paragraph',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './paragraph.component.html',
|
||||
styleUrl: './paragraph.component.css'
|
||||
})
|
||||
export class ParagraphComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user