import { create } from "zustand"; import { devtools } from "zustand/middleware"; type Wallet = { cash: number } export const useWallet = create()( devtools(() => ( { cash: 0 } )) ); export const setCash = (cash: number) => { console.log("я получил ", cash) useWallet.setState({ cash }) };