7079f8404dff55164d2337cb03192900ef8aad80
[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 = true;
10     listView = false;
11
12     constructor() {
13     }
14
15     ngOnInit() {
16     }
17
18     openCreationView() {
19         this.creationView = false;
20         this.listView = true;
21     }
22
23     openListView() {
24         this.listView = false;
25         this.creationView = false;
26     }
27
28 }