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