Created
June 27, 2018 07:46
-
-
Save GrillPhil/28bcadc6d68b542f6f52e3f2bdb19fb2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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