import * as React from "react"; import * as Strings from "~/common/strings"; import * as Constants from "~/common/constants"; import * as System from "~/components/system"; import { css } from "@emotion/react"; import Section from "~/components/core/Section"; import ScenePage from "~/components/core/ScenePage"; const STYLES_ROW = css` padding: 24px; display: flex; align-items: center; justify-content: space-between; `; const STYLES_LEFT = css` font-size: ${Constants.typescale.lvl2}; padding-right: 24px; flex-shrink: 0; min-width: 228px; `; const STYLES_RIGHT = css` font-family: ${Constants.font.semiBold}; font-size: ${Constants.typescale.lvl2}; color: ${Constants.system.brand}; min-width: 10%; width: 100%; padding-left: 24px; overflow-wrap: break-word; `; const STYLES_TEXT_CTA = css` font-family: ${Constants.font.text}; text-decoration: underline; color: ${Constants.system.brand}; font-weight: 400; cursor: pointer; transition: 200ms ease all; :hover { color: ${Constants.system.green}; } `; export default class SceneStatus extends React.Component { state = {}; _handleChange = (e) => { this.setState({ [e.target.name]: e.target.value }); }; render() { return ( Status
Peer ID
Qma9T5YraSnpRDZqRR4krcSJabThc8nwZuJV3LercPHufi{" "} (copy)
Peers (view)
4
Version
Lotus Testnet 3
Miners (view)
1
Workers
0   (copy)
Network
Mainnet
Status
Connected
Genesis
pYqSDLCIthA3CPoVcmwoDOIWyw0pC6uTwDFmNZytEREPLLEV3nOBjnv+yoKqk7nNCgpYAVUwXMv+mcZ2XNusdSWcd6b0HNmeqzQeaB9pZSayy9AV5E2Qp56CGxifRGKC{" "}   (copy){" "}
Status
Message Sync 30%
Head
Tipset hash
Height
96413
Timestamp
April 13th, 2020 4:42 PM
Reset
); } }