import * as React from "react"; import * as Strings from "~/common/strings"; import * as Constants from "~/common/constants"; import * as System from "~/components/system"; import * as SchemaTable from "~/common/schema-table"; import * as Data from "~/common/data"; import { css } from "@emotion/react"; import GLRenderer from "~/components/three/GLRenderer"; import Section from "~/components/core/Section"; import ScenePage from "~/components/core/ScenePage"; const STYLES_ROW = css` display: flex; margin-top: 24px; width: 100%; :first-child { margin-top: 0px; } `; const STYLES_COLUMN = css` display: inline-flex; padding: 0 12px 0 12px; max-width: 25%; width: 100%; :first-child { padding: 0 12px 0 0; } :last-child { padding: 0 0 0 12px; } @media (max-width: 768px) { max-width: 100%; } `; export default class SceneHome extends React.Component { state = { data: null, transaction: null, }; _handleChange = (e) => { this.setState({ [e.target.name]: e.target.value }); }; render() { return ( {this.props.viewer.library[0] ? (
) : null} {this.props.viewer.addresses[0] ? (
) : null}
); } }