mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
16 lines
294 B
TypeScript
16 lines
294 B
TypeScript
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 {
|
|
}
|
|
|
|
}
|