16 lines
201 B
TypeScript
16 lines
201 B
TypeScript
import {
|
|
Component
|
|
} from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'of-infra-tree',
|
|
templateUrl: './infra-tree.component.html',
|
|
})
|
|
export class InfraTreeComponent {
|
|
|
|
constructor(
|
|
) {
|
|
}
|
|
}
|