René's URL Explorer Experiment


Title: Error in 5.0.9 · Issue #157 · WebReflection/uhtml · GitHub

Open Graph Title: Error in 5.0.9 · Issue #157 · WebReflection/uhtml

X Title: Error in 5.0.9 · Issue #157 · WebReflection/uhtml

Description: Test case: import { html, signal } from './uhtml.js'; const items = signal([]); const ListItem = ({item}) => html`

  • ${item.text}
  • `; const List = ({items}) => html`