import React from 'react'; import styles from './style.js'; import EthereumLogo from './../assets/ethereum-logo.svg'; import MetamaskLogo from './../assets/metamask-logo.svg'; function capitalize(string) { return string.charAt(0).toUpperCase() + string.slice(1); } const NoConnection = ({ network }) => console.log(network) || (
Status
Ethereum

NOT CONNECTED TO ETHEREUM {network.toUpperCase()}

This application requires an Ethereum client to be running and connected to {capitalize(network)}. A client could not be detected which probably means it's not installed, running or is misconfigured.

Please use one of the following clients to connect to Ethereum:

Metamask

METAMASK

1 Install {" "} Metamask

2 Use Chrome to browse {" "} https://vote.status.im

Mist

MIST

1 Install and run {" "} Mist

2 Use Mist to browse {" "} https://vote.status.im

); NoConnection.displayName = 'NoConnection'; export default NoConnection;