14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-process-automation',
|
|
templateUrl: './process-automation.component.html'
|
|
})
|
|
export class ProcessAutomationComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|