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.
|
function Note(){
|
|
return {
|
|
view: function(vnode){
|
|
const {note} = vnode.attrs;
|
|
return m('.note', [
|
|
m('.text', note.text),
|
|
m('button', 'Edit')
|
|
]);
|
|
}
|
|
};
|
|
}
|
|
|
|
export default Note; |