```datacorejsx return function View() { const [count, setCount] = dc.useState(0) return (
count is: {count}
setCount(c => c + 1)}> click me!
) } ```