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