v0.2.1
Starting from this release, the pre-defined set of HTML tags is now removed. You will now have to manually specify the tags you are going to use, by extracting them from H
. For example:
// v0.1.0
R(div('Hello world'), document.body);
// v0.2.1
const {div} = H;
R(div('Hello world'), document.body);
Changelog
- ADDED: Introduced child reconciliation algorithm
- ADDED: Custom tag expansion shorthands
- REMOVED: Pre-defined HTML Tag shorthands.