Created
January 24, 2017 10:28
-
-
Save tomasstankovic/7b64f5f9f129d98c33b4bf9a2d606f13 to your computer and use it in GitHub Desktop.
This file contains 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 { Component } from '@angular/core'; | |
import { PreloaderService } from '../../services/preloader-service'; | |
@Component({ | |
selector: 'preloader-small', | |
styleUrls: [ | |
'./preloader-small.scss' | |
], | |
templateUrl: './preloader-small.html' | |
}) | |
export class PreloaderSmall { | |
constructor(public preloaderService: PreloaderService) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment