Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Last active August 29, 2015 14:25
Show Gist options
  • Save yelouafi/2860cba183e94730ae6b to your computer and use it in GitHub Desktop.
Save yelouafi/2860cba183e94730ae6b to your computer and use it in GitHub Desktop.
function view(currentDate) {
return h('div', 'Current date ' + currentDate);
}
var oldVnode = document.getElementById('placeholder');
setInterval( () => {
const newVnode = view(new Date());
oldVnode = patch(oldVnode, newVnode);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment