Merge "Simplify PNF-DEMO CBA"
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / designer / actions / actions.component.ts
1 import {Component, OnInit} from '@angular/core';
2
3 @Component({
4     selector: 'app-actions',
5     templateUrl: './actions.component.html',
6     styleUrls: ['./actions.component.css']
7 })
8 export class ActionsComponent implements OnInit {
9     actions: string[] = [];
10
11     constructor() {
12       this.actions.push('action 1 ');
13       this.actions.push('action 2');
14     }
15
16     ngOnInit() {
17     }
18
19 }