bredele / grout

:sweat_drops: virtual dom
MIT License
3 stars 0 forks source link

nice features and documentation #29

Open bredele opened 8 years ago

bredele commented 8 years ago

don't forget to say:

dom('h1', function() {
  return [
    dom('li', 'hello'),
    dom('li', 'world')
  ];
});

dom('h1', null, {
  class: function() {
   return 'hello ' + this.name;
  }
});