Skip to content

Commit

Permalink
Step 4.10: Load the stylesheet 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 886d86f commit d54a31a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/imports/pages/chat/messages-page.component.ts
Expand Up @@ -5,10 +5,14 @@ import {Messages} from "../../../../both/collections/messages.collection";
import {Observable} from "rxjs";
import {Message} from "../../../../both/models/message.model";
import template from "./messages-page.component.html";
import style from "./messages-page.component.scss";

@Component({
selector: "messages-page",
template
template,
styles: [
style
]
})
export class MessagesPage implements OnInit {
private selectedChat: Chat;
Expand Down

0 comments on commit d54a31a

Please sign in to comment.