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
217 B
JavaScript

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