added component for resource removal

This commit is contained in:
Maria Teresa Paratore 2024-04-12 17:01:08 +02:00
parent e9d5de90a3
commit 54b9206b13
4 changed files with 39 additions and 0 deletions

View File

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

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RemoveResourceComponent } from './remove-resource.component';
describe('RemoveResourceComponent', () => {
let component: RemoveResourceComponent;
let fixture: ComponentFixture<RemoveResourceComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ RemoveResourceComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(RemoveResourceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'jhi-remove-resource',
templateUrl: './remove-resource.component.html',
styleUrls: ['./remove-resource.component.scss']
})
export class RemoveResourceComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}