Skip to content

Commit

Permalink
Step 21.31: Added import for the styles file
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 14, 2016
1 parent f1070a6 commit 76a36af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/imports/app/parties/parties-upload.component.ts
@@ -1,6 +1,7 @@
import {Component, OnInit} from '@angular/core';

import template from './parties-upload.component.html';
import style from './parties-upload.component.scss';

import { upload } from '../../../../both/methods/images.methods';
import {Subject, Subscription, Observable} from "rxjs";
Expand All @@ -10,7 +11,8 @@ import {Thumbs} from "../../../../both/collections/images.collection";

@Component({
selector: 'parties-upload',
template
template,
styles: [ style ]
})
export class PartiesUploadComponent implements OnInit {
fileIsOver: boolean = false;
Expand Down

0 comments on commit 76a36af

Please sign in to comment.