summaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/build/build.module.ts
blob: ac1dfabf56256b108d1ca8e64cde610158182d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { NgModule } from '@angular/core';
import { ThemeModule } from '../../@theme/theme.module';

import { BuildComponent } from './build.component';
import { ProjectSelectDropdownComponent } from './settings/project-select-dropdown.component';
import { SdkSelectDropdownComponent } from './settings/sdk-select-dropdown.component';

@NgModule({
  imports: [
    ThemeModule,
  ],
  declarations: [
    BuildComponent,
    ProjectSelectDropdownComponent,
    SdkSelectDropdownComponent,
  ],
  entryComponents: [
  ],
})
export class BuildModule { }