Files

17 lines
298 B
TypeScript
Raw Permalink Normal View History

2026-05-06 17:22:50 +08:00
'use client'
export default function TestButton() {
const handleClick = () => {
alert('hello')
}
return (
<button
onClick={handleClick}
className="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition-colors"
>
</button>
)
}