map.js
398 Bytes
import React, { Component } from 'react';
import Iframe from 'react-iframe';
import 'react-select/dist/react-select.css';
export default class Map extends Component<*, State> {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<div>
<Iframe url="/map/pedro" position="absolute" width="100%" height="95%" id="mapId" allowFullScreen />
</div>
);
}
}