10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { useAtomValue } from 'jotai'
|
|
import { rpcClientState } from '../atoms/rpc'
|
|
|
|
export const useRPC = () => {
|
|
const client = useAtomValue(rpcClientState)
|
|
|
|
return {
|
|
client
|
|
}
|
|
} |