example
export let TestElement = () => {
const handleClick = () => {
console.log('Sent');
}
return (
<button onClick={handleClick}>
hi, there
</button>
)
}
example
export let TestElement = () => {
const handleClick = () => {
console.log('Sent');
}
return (
<button onClick={handleClick}>
hi, there
</button>
)
}