From 5e7fac887de3e0787bd9afa9c0ab58b39f48901a Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Tue, 29 Jan 2019 16:01:36 +0530 Subject: Text Editor This component contains code for text editor Issue-ID: CCSDK-975 Change-Id: Ic3b22f8edf6b548f11ad1dec81aa9997ba413173 Signed-off-by: Arundathi Patil --- .../modify-template/editor/editor.component.ts | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts (limited to 'cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts new file mode 100644 index 000000000..18b4563fa --- /dev/null +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts @@ -0,0 +1,36 @@ +/* +============LICENSE_START========================================== +=================================================================== +Copyright (C) 2018-19 IBM Intellectual Property. All rights reserved. +=================================================================== + +Unless otherwise specified, all software contained herein is licensed +under the Apache License, Version 2.0 (the License); +you may not use this software except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +============LICENSE_END============================================ +*/ + +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-editor', + templateUrl: './editor.component.html', + styleUrls: ['./editor.component.scss'] +}) +export class EditorComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} -- cgit 1.2.3-korg