Merge pull request #837 from sisidovski/fix_sample

Change m.mount to m.component in sample html
This commit is contained in:
Leo Horie 2015-11-12 14:32:02 -05:00
commit e9e8b0922f

View file

@ -44,8 +44,8 @@ var ContactsWidget = {
},
view: function(ctrl) {
return [
m.module(ContactForm),
m.module(ContactList)
m.component(ContactForm),
m.component(ContactList)
]
}
}