mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
// noinspection AngularMissingOrInvalidDeclarationInModule
|
|
@Component({
|
|
selector: 'ds-test-component',
|
|
standalone: true,
|
|
template: '',
|
|
})
|
|
export class TestComponent {
|
|
type = 'default';
|
|
testInput = 'unset';
|
|
}
|