added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / layout.module.ts
diff --git a/otf-frontend/client/src/app/layout/layout.module.ts b/otf-frontend/client/src/app/layout/layout.module.ts
new file mode 100644 (file)
index 0000000..1de7fa6
--- /dev/null
@@ -0,0 +1,49 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+import { NgModule } from '@angular/core';\r
+import { CommonModule } from '@angular/common';\r
+import { TranslateModule } from '@ngx-translate/core';\r
+import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';\r
+\r
+import { LayoutRoutingModule } from './layout-routing.module';\r
+import { LayoutComponent } from './layout.component';\r
+import { SidebarComponent } from './components/sidebar/sidebar.component';\r
+import { HeaderComponent } from './components/header/header.component';\r
+import { RightSidebarComponent } from './components/right-sidebar/right-sidebar.component';\r
+import { CreateGroupModalModule } from 'app/shared/modules/create-group-modal/create-group-modal.module';\r
+import { MatMenuModule, MatIconModule, MatButtonModule } from '@angular/material';\r
+import { MenuItemComponent } from 'app/shared/components/menu-item/menu-item.component';\r
+@NgModule({\r
+    imports: [\r
+        CommonModule,\r
+        LayoutRoutingModule,\r
+        TranslateModule,\r
+        NgbDropdownModule.forRoot(),\r
+        CreateGroupModalModule,\r
+        MatMenuModule,\r
+        MatIconModule,\r
+        MatButtonModule\r
+    ],\r
+    declarations: [\r
+        LayoutComponent, \r
+        SidebarComponent,\r
+        HeaderComponent, \r
+        RightSidebarComponent,\r
+        MenuItemComponent\r
+    ]\r
+})\r
+export class LayoutModule {}\r