Inferno has a really awesome and cheap optimisation via blueprints. Here’s an example:
import InfernoDOM from 'inferno-dom';
const myBlueprint = Inferno.createBlueprint({
tag: 'div',
attrs: {
id: 'foo'
},
children: { arg: 0 }
});
InfernoDOM.render(myBlueprint('foo'), document.body);
Inferno has a really awesome and cheap optimisation via blueprints. Here’s an example: