Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjrasche/74e16b5f067b1fc0830e70e758a37ff1 to your computer and use it in GitHub Desktop.
Save jjrasche/74e16b5f067b1fc0830e70e758a37ff1 to your computer and use it in GitHub Desktop.
// Angular
import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { RouterModule } from "@angular/router";
// Modules
import { NgxKlaBootstrapFormComponentsModule } from "ngx-kla-bootstrap-form-components";
import { VmsDetailModule } from "@vms/vms-detail/vms-detail.module";
import { UiComponentModule } from "@vms/shared/ui-component/ui-component.module";
// Components / Directives
import { ProposalHeaderComponent } from "@vms/proposal/detail/proposal/header/proposal-header.component";
import { ProposalFormComponent } from "@vms/proposal/detail/proposal/form/proposal-form.component";
import { ProposalSharedModule } from "@vms/proposal/shared/proposal-shared.module";
const config = {
imports: [
CommonModule,
NgxKlaBootstrapFormComponentsModule,
VmsDetailModule,
ProposalSharedModule,
RouterModule,
UiComponentModule
],
declarations: [
ProposalFormComponent,
ProposalHeaderComponent,
],
exports: [
ProposalHeaderComponent
]
};
@NgModule(config)
export class ProposalHeaderModule {
public static config(): any {
return config;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment