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

@Component({
  selector: 'app-template-mapping',
  templateUrl: './template-mapping.component.html',
  styleUrls: ['./template-mapping.component.css']
})
export class TemplateMappingComponent implements OnInit {
  creationView = false;

  constructor() { }

  ngOnInit() {
  }

  openCreationView() {
    this.creationView = true;
  }

}