Skip to content

Instantly share code, notes, and snippets.

@GrillPhil
Created June 27, 2018 07:46
Show Gist options
  • Select an option

  • Save GrillPhil/28bcadc6d68b542f6f52e3f2bdb19fb2 to your computer and use it in GitHub Desktop.

Select an option

Save GrillPhil/28bcadc6d68b542f6f52e3f2bdb19fb2 to your computer and use it in GitHub Desktop.
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { SpinnerComponent } from './spinner.component';
@NgModule({
imports: [
CommonModule
],
declarations: [
SpinnerComponent
],
exports: [
SpinnerComponent
]
})
export class SpinnerModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment