add header

This commit is contained in:
smanylov
2025-11-26 14:01:35 +07:00
parent 7a8c2cee56
commit ebca795c1b
16 changed files with 618 additions and 41 deletions
+15
View File
@@ -0,0 +1,15 @@
'use client'
import { testConnect } from '@/app/api/action';
async function clickHandler() {
testConnect();
}
export default function ButtonTest() {
return (
<button className='border-2 cursor-pointer' onClick={() => {
clickHandler();
}}>button</button>
);
}