Created
January 24, 2017 10:26
-
-
Save tomasstankovic/b3dfffca54a1eea5b9c859f13fa7a88a 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 { 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