Files
no-copy-frontend/src/app/ui/button-test.tsx
T
2025-12-02 17:11:53 +07:00

13 lines
228 B
TypeScript

'use client'
async function clickHandler() {
console.log('click')
}
export default function ButtonTest() {
return (
<button className='border-2 cursor-pointer' onClick={() => {
clickHandler();
}}>button</button>
);
}