refactor: remove paragraph component

This commit is contained in:
2025-07-20 12:23:57 -03:00
parent 438f4d9e59
commit 188b4de619
4 changed files with 0 additions and 36 deletions

View File

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

View File

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

View File

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