The DSL that streamlines DOM authoring.
import dsl from 'flyweight-dom/dsl';const element = dsl.div({ class: 'red' }, 'Hello, ', dsl.strong('world!'));element.getAttribute('class');// ⮕ 'red'element.textContent;// ⮕ 'Hello, world!' Copy
import dsl from 'flyweight-dom/dsl';const element = dsl.div({ class: 'red' }, 'Hello, ', dsl.strong('world!'));element.getAttribute('class');// ⮕ 'red'element.textContent;// ⮕ 'Hello, world!'
The DSL that streamlines DOM authoring.