You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastebin/Note.js

13 lines
180 B
JavaScript

function Note(){
return {
view: function(vnode){
const {note} = vnode.attrs;
return m('.note', [
m('.text', note.text),
m('button', 'Edit')
]);
}
};
}
export default Note;