import React, {PureComponent} from 'react' import './FirstPage.css' import {GIS} from "iclient3d-plot-diy"; export default class FirstPage extends PureComponent { constructor(props) { super(props); this.state = {}; } componentDidMount() { } render() { return (
{ this.mapFunction = e }} plotUrl={this.state.plotUrl} mapRef={this} />
) } }