import React from 'react' import { constants } from '../../utils/constants' let Header = ({ netId }) => { const thisIsTestnet = netId in constants.NETWORKS && constants.NETWORKS[netId].TESTNET const headerClassName = thisIsTestnet ? 'sokol' : '' const logoClassName = thisIsTestnet ? 'header-logo-sokol' : 'header-logo' return (
) } export default Header