aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/actions/actions.component.ts
blob: 144cd0a70086839e2fef961bd28e92f569dbd167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {Component, OnInit} from '@angular/core';

@Component({
    selector: 'app-actions',
    templateUrl: './actions.component.html',
    styleUrls: ['./actions.component.css']
})
export class ActionsComponent implements OnInit {
    actions: string[] = [];

    constructor() {
      this.actions.push('action 1 ');
      this.actions.push('action 2');
    }

    ngOnInit() {
    }

}