UNPKG

@openocean.finance/widget

Version:

Openocean Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

9 lines (8 loc) 217 B
import { create } from 'zustand' export const useServerErrorStore = create<{ error: string | null setError: (msg: string | null) => void }>((set) => ({ error: null, setError: (msg) => set({ error: msg }), }))