Skip to content

Instantly share code, notes, and snippets.

@myobie
Created December 8, 2024 09:00
Show Gist options
  • Save myobie/83249befc275711cf469e28363b1866a to your computer and use it in GitHub Desktop.
Save myobie/83249befc275711cf469e28363b1866a to your computer and use it in GitHub Desktop.
An example used in my blog post at https://nathanherald.com/
export function reactiveTextNode(signal) {
const node = document.createTextNode(signal.value)
effect(() => {
node.textContent = signal.value
})
return node
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment