added component for resource removal
This commit is contained in:
parent
e9d5de90a3
commit
54b9206b13
|
@ -0,0 +1 @@
|
|||
<p>remove-resource works!</p>
|
|
@ -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();
|
||||
});
|
||||
});
|
|
@ -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 {
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue