Skip to content

Instantly share code, notes, and snippets.

@PxyUp
Last active April 26, 2019 22:16
Show Gist options
  • Save PxyUp/93f90322dd4a622cb07d837b07e7c0ed to your computer and use it in GitHub Desktop.
Save PxyUp/93f90322dd4a622cb07d837b07e7c0ed to your computer and use it in GitHub Desktop.
FasterDom Counter
import { bootstrap, rValue } from 'revact';
bootstrap('#app', () => {
const counter = rValue(0)
return {
tag: "div",
textValue: counter,
listeners: {
click: () => {
counter.value +=1
}
}
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment