From d71ba83a6075950877963fef084a5f6e4aa598ba Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Fri, 11 Oct 2019 12:33:57 +0530 Subject: JointJS Prototype Added JointJS POC Issue-ID: CCSDK-1765 Change-Id: Ia8a6e913e3d4f10f3fdc0e1ec377304e49879240 Signed-off-by: Arundathi Patil --- .../client/JointJS-POC-In-Progress/app.module.ts | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cds-ui/client/JointJS-POC-In-Progress/app.module.ts (limited to 'cds-ui/client/JointJS-POC-In-Progress/app.module.ts') diff --git a/cds-ui/client/JointJS-POC-In-Progress/app.module.ts b/cds-ui/client/JointJS-POC-In-Progress/app.module.ts new file mode 100644 index 000000000..15eb6d5fc --- /dev/null +++ b/cds-ui/client/JointJS-POC-In-Progress/app.module.ts @@ -0,0 +1,24 @@ +import { BrowserModule } from '@angular/platform-browser'; +import { NgModule } from '@angular/core'; +import { FormsModule } from '@angular/forms'; +import { CommonModule } from '@angular/common'; + +import { AppRoutingModule } from './app-routing.module'; +import { AppComponent } from './app.component'; +import { DragCopyComponent } from './drag-copy/drag-copy.component'; + +@NgModule({ + declarations: [ + AppComponent, + DragCopyComponent + ], + imports: [ + BrowserModule, + AppRoutingModule, + FormsModule, + CommonModule + ], + providers: [], + bootstrap: [AppComponent] +}) +export class AppModule { } -- cgit 1.2.3-korg