Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Created November 2, 2019 21:15
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 phenomnomnominal/fbb0c315305315b36834bdbcb77df383 to your computer and use it in GitHub Desktop.
Save phenomnomnominal/fbb0c315305315b36834bdbcb77df383 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { YouTubePlayerModule } from '@angular/youtube-player';
import { VideoComponent } from './video.component';
@NgModule({
imports: [YouTubePlayerModule],
declarations: [VideoComponent],
exports: [VideoComponent]
})
export class VideoModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment