Skip to content

Instantly share code, notes, and snippets.

View ashangrajapaksha's full-sized avatar
🎯
Focusing

Ashan Rajapaksha ashangrajapaksha

🎯
Focusing
  • Revox.io
View GitHub Profile
import React, { useState } from 'react'
function HooksCounter() {
const [count, setCount] = useState(0)
return (
<div>
<button onClick={() => setCount(count + 1)} >Click {count}</button>
</div>