import React, { Fragment } from 'react'; import Warning from '../../ui/components/Warning'; const Web3Render = ({ ready, children, network }) => ( {ready ? {children} : Please connect to Ethereum {network}
to continue.
}
); export default Web3Render;