web3-context.js

 avatar
unknown
plain_text
3 years ago
198 B
3
Indexable
import React from 'react';

const Web3Context = React.createContext({
  account: null,
  networkId: null,
  loadAccount: () => {},
  loadNetworkId: () => {}
});

export default Web3Context;
Editor is loading...