added component to perform CRUD operations on resources

This commit is contained in:
Maria Teresa Paratore 2023-12-13 16:35:15 +01:00
parent 9b5df366c5
commit 3984de656a
5 changed files with 37 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,12 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
@NgModule({
declarations: [],
imports: [
CommonModule
]
})
export class ResourcesCrudModule { }

View File

@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ResourcesCrudService {
constructor() { }
}