added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / layout.module.ts
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import { NgModule } from '@angular/core';\r
18 import { CommonModule } from '@angular/common';\r
19 import { TranslateModule } from '@ngx-translate/core';\r
20 import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';\r
21 \r
22 import { LayoutRoutingModule } from './layout-routing.module';\r
23 import { LayoutComponent } from './layout.component';\r
24 import { SidebarComponent } from './components/sidebar/sidebar.component';\r
25 import { HeaderComponent } from './components/header/header.component';\r
26 import { RightSidebarComponent } from './components/right-sidebar/right-sidebar.component';\r
27 import { CreateGroupModalModule } from 'app/shared/modules/create-group-modal/create-group-modal.module';\r
28 import { MatMenuModule, MatIconModule, MatButtonModule } from '@angular/material';\r
29 import { MenuItemComponent } from 'app/shared/components/menu-item/menu-item.component';\r
30 @NgModule({\r
31     imports: [\r
32         CommonModule,\r
33         LayoutRoutingModule,\r
34         TranslateModule,\r
35         NgbDropdownModule.forRoot(),\r
36         CreateGroupModalModule,\r
37         MatMenuModule,\r
38         MatIconModule,\r
39         MatButtonModule\r
40     ],\r
41     declarations: [\r
42         LayoutComponent, \r
43         SidebarComponent,\r
44         HeaderComponent, \r
45         RightSidebarComponent,\r
46         MenuItemComponent\r
47     ]\r
48 })\r
49 export class LayoutModule {}\r