google-map-react/src/google_map_markers_prerender.js
Ivan Starkov 07368e23ad Move 2 yarn, add prettier, update linters (#360)
* Move 2 yarn, add prettier, update linters

* Fix linting error
2017-04-11 00:47:54 +03:00

23 lines
395 B
JavaScript

import React from 'react';
import GoogleMapMarkers from './google_map_markers';
const style = {
width: '50%',
height: '50%',
left: '50%',
top: '50%',
// backgroundColor: 'red',
margin: 0,
padding: 0,
position: 'absolute',
// opacity: 0.3
};
export default function(props) {
return (
<div style={style}>
<GoogleMapMarkers {...props} prerender />
</div>
);
}