Overview
html
html`<div property="${value}">${value}</div>` : Functionimport { html } from 'hybrids';
const update = ({ value }) => html`
<div>${value}</div>
`;svg
Last updated
Was this helpful?
html`<div property="${value}">${value}</div>` : Functionimport { html } from 'hybrids';
const update = ({ value }) => html`
<div>${value}</div>
`;Last updated
Was this helpful?
Was this helpful?
svg`<circle property="${value}">${value}</circle>` : Functionimport { html, svg } from 'hybrids';
const update = ({ radius }) => html`
<svg viewBox="0 0 300 100">${
svg`<circle cx="50" cy="50" r="${radius}" />`
}</svg>
`;