I have this weird error (Super expression must either be null or a function, not undefined) when I just import react-google-maps. Any idea?
import React from 'react';
import { GoogleMap } from 'react-google-maps';
class GoogleMapFlow extends React.Component{
constructor(props){
super(props);
}
render() {
return (
<div>Hello World</div>
);
}
}
export default GoogleMapFlow;