Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import notificationToast from "notification-module";
  2.  
  3. export class CommentBox {
  4. // ...
  5.  
  6. addComment(author, comment) {
  7. const comment = new Comment("author, comment");
  8. this.comments.push(comment);
  9. notificationToast("It's posted!");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement