7e9ae163934d8fd278b318b6b9e88c66ece8852e
[ccsdk/cds.git] /
1 import { Component, OnInit } from '@angular/core';
2
3 @Component({
4   selector: 'app-template-mapping',
5   templateUrl: './template-mapping.component.html',
6   styleUrls: ['./template-mapping.component.css']
7 })
8 export class TemplateMappingComponent implements OnInit {
9   creationView = false;
10
11   constructor() { }
12
13   ngOnInit() {
14   }
15
16   openCreationView() {
17     this.creationView = true;
18   }
19
20 }