Skip to content

Instantly share code, notes, and snippets.

@tomasstankovic
Created January 24, 2017 10:28
Show Gist options
  • Save tomasstankovic/7b64f5f9f129d98c33b4bf9a2d606f13 to your computer and use it in GitHub Desktop.
Save tomasstankovic/7b64f5f9f129d98c33b4bf9a2d606f13 to your computer and use it in GitHub Desktop.
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