[CST-9636] Create page for bulk access

This commit is contained in:
Giuseppe Digilio
2023-05-09 18:39:04 +02:00
parent cd1808d981
commit 06fef61f02
16 changed files with 312 additions and 10 deletions

View File

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