google-map-react/src/google_map_markers_prerender.js
Michael Diego b3bc11c215
Rewrite library using create-react-library (#900)
* Rewrite library using create-react-library
* Export utils properly
* Remove unnecessary code and fix eslintignore
* Update CHANGELOG
2020-07-25 03:03:03 -03:00

23 lines
396 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>
);
}