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 Dec 16, 2016
1 parent a009a6c commit 5d0dd44
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/imports/pages/chat/messages-page.component.ts
Original file line number Diff line number Diff line change
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 5d0dd44

Please sign in to comment.