Skip to content

Commit

Permalink
Include custom module
Browse files Browse the repository at this point in the history
  • Loading branch information
James committed Dec 20, 2017
1 parent efb1c60 commit d35ac8e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vg-custom-logo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewEncapsulation} from '@angular/core';
import {Component, ElementRef, Input, ViewEncapsulation, NgModule} from '@angular/core';
import {VgAPI} from "videogular2/core";

@Component({
Expand Down Expand Up @@ -47,3 +47,9 @@ export class VgCustomLogo implements OnInit {
}

}

@NgModule({
declarations: [VgCustomLogo],
exports: [VgCustomLogo]
})
export class VgCustomLogoModule {}

0 comments on commit d35ac8e

Please sign in to comment.