Skip to content

Commit

Permalink
fix(component): add DynamicIo module to component module
Browse files Browse the repository at this point in the history
So that inputs and outputs work by just importing DynamicComponentModule
  • Loading branch information
gund committed Mar 13, 2020
1 parent a13c7d6 commit eac4c5b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { DynamicIoModule } from './dynamic-io';
import { DynamicComponent } from './dynamic.component';

@NgModule({
imports: [CommonModule],
exports: [DynamicComponent],
imports: [CommonModule, DynamicIoModule],
exports: [DynamicComponent, DynamicIoModule],
declarations: [DynamicComponent],
})
export class DynamicComponentModule {}

0 comments on commit eac4c5b

Please sign in to comment.