map.js 431 Bytes
import React, { Component } from 'react'
import Iframe from 'react-iframe'
import 'react-select/dist/react-select.css'

export default class Map extends Component {
  constructor (props) {
    super(props)
    this.state = {}
  }
  render () {
    console.log(this.props)
    return (
      <div>
        <Iframe url='/map/pedro' position='absolute' width='100%' height='95%' id='mapId' allowFullScreen />
      </div>
    )
  }
}