Skip to content

Instantly share code, notes, and snippets.

@tomasstankovic
Created January 24, 2017 10:26
Show Gist options
  • Save tomasstankovic/b3dfffca54a1eea5b9c859f13fa7a88a to your computer and use it in GitHub Desktop.
Save tomasstankovic/b3dfffca54a1eea5b9c859f13fa7a88a to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { PreloaderService } from '../../services/preloader-service';
@Component({
selector: 'preloader-full',
styleUrls: [
'./preloader-full.scss'
],
templateUrl: './preloader-full.html'
})
export class PreloaderFull {
constructor(public preloaderService: PreloaderService) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment