mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
15 lines
642 B
TypeScript
15 lines
642 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { AdminWorkflowPageComponent as BaseComponent } from '../../../../../app/admin/admin-workflow-page/admin-workflow-page.component';
|
|
|
|
@Component({
|
|
selector: 'ds-themed-admin-workflow-page',
|
|
// styleUrls: ['./admin-workflow-page.component.scss'],
|
|
styleUrls: ['../../../../../app/admin/admin-workflow-page/admin-workflow-page.component.scss'],
|
|
// templateUrl: './admin-workflow-page.component.html',
|
|
templateUrl: '../../../../../app/admin/admin-workflow-page/admin-workflow-page.component.html',
|
|
standalone: true,
|
|
})
|
|
export class AdminWorkflowPageComponent extends BaseComponent {
|
|
}
|