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 Feb 26, 2017
1 parent 2c09c64 commit dbc5ae1
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 dbc5ae1

Please sign in to comment.