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 { LineChart } from "~/vendor/react-chartkick"; import Section from "~/components/core/Section"; import ScenePage from "~/components/core/ScenePage"; const STYLES_CHART_SECTION = css` display: flex; align-items: flex-start; justify-content: space-between; margin-top: 48px; `; const STYLES_LEFT = css` min-width: 10%; width: 100%; `; const STYLES_RIGHT = css` width: 288px; flex-shrink: 0; padding-left: 24px; `; const STYLES_FOCUS = css` font-size: ${Constants.typescale.lvl1}; font-family: ${Constants.font.medium}; overflow-wrap: break-word; width: 100%; strong { font-family: ${Constants.font.semiBold}; font-weight: 400; } `; const STYLES_SUBTEXT = css` margin-top: 8px; font-size: 12px; `; const STYLES_ITEM = css` padding: 16px 24px 16px 24px; `; const STYLES_OPTION = css` margin-left: 24px; font-family: ${Constants.font.semiBold}; font-size: 12px; line-height: 0.2px; text-transform: uppercase; border-radius: 4px; transition: 200ms ease all; :hover { cursor: pointer; color: ${Constants.system.brand}; } `; const STYLES_OPTIONS = css` display: flex; align-items: center; justify-content: flex-end; padding: 24px; `; export default class SceneStorageMarket extends React.Component { state = {}; _handleChange = (e) => { this.setState({ [e.target.name]: e.target.value }); }; render() { return ( 2,534 FIL Last Storage Order / GB / Month{" "} +143.24 (6.08)%
1 Day 1 Week 1 Month 6 Month 1 Year
8,422 FIL/GB/Month
Market Storage Price
4 FIL/GB/Month
Average Storage Price
4.001 FIL/GB/Month
Storage High Today
44 Files
Daily File Volume
24 Files
Average Daily File Volume
444,444 GB
Monthly GB Volume
24,000 GB
Average GB Volume
); } }