auction/frontend/casino/src/app/components/web3/RPSPlayButton.tsx
Aleksey_Levin e5b151f5be fixes
2024-01-17 12:51:42 +03:00

14 lines
No EOL
415 B
TypeScript

import {usePlayRPS} from "../../web3/functions/RPS/usePlayRPS.ts";
export const RPSPlayButton = () => {
const { playRPS } = usePlayRPS()
return (
<button
onClick={() => { playRPS('1') }}
className="bg-rose-700 rounded-[100px] shadow text-white text-2xl font-bold py-5 px-10 hover:bg-rose-600 inline-block max-w-[200px]">
Играть
</button >
)
}