Skip to content

Commit

Permalink
Step 2.17: Import the new styles into the Component
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 16, 2016
1 parent 15d0143 commit 796a5a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/imports/pages/chats/chats.component.ts
Expand Up @@ -3,10 +3,15 @@ import template from "./chats.component.html"
import {Observable} from "rxjs";
import {Chat} from "../../../../both/models/chat.model";
import * as moment from "moment";
import style from "./chats.component.scss";


@Component({
selector: "chats",
template
template,
styles: [
style
]
})
export class ChatsComponent {
chats: Observable<Chat[]>;
Expand Down

0 comments on commit 796a5a8

Please sign in to comment.