From b85e6de55f8c697f463584f43325c4777451253a Mon Sep 17 00:00:00 2001 From: shady Date: Wed, 22 Jan 2020 13:47:41 +0200 Subject: add design for template and mapping Issue-ID: CCSDK-2035 Signed-off-by: shady Change-Id: I60d1fd623c84e98d0b762a0b5df0e375a7c75031 --- .../template-mapping/template-mapping.component.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts new file mode 100644 index 000000000..6615a2d2c --- /dev/null +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts @@ -0,0 +1,15 @@ +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 { + + constructor() { } + + ngOnInit() { + } + +} -- cgit 1.2.3-korg