import React from 'react' import styles from './index.module.css' import Status from './Status' export interface NetworkProps { name: string project?: string networkId: string chainId?: string type: string rpcUrl?: string explorerUrl?: string } export default function Network({ network }: { network: NetworkProps }) { return (

{network.name} {network.networkId} {network.type}

{network.rpcUrl}

) }