Fix default imports

This commit is contained in:
Michael 2020-07-31 01:57:38 -03:00
parent d0b242e8a9
commit 1cae88eb5d
2 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ const isFullScreen = () =>
document.mozFullScreen ||
document.msFullscreenElement;
export default class GoogleMap extends Component {
class GoogleMap extends Component {
static propTypes = {
apiKey: PropTypes.string,
bootstrapURLKeys: PropTypes.any,
@ -1171,3 +1171,5 @@ export default class GoogleMap extends Component {
);
}
}
export default GoogleMap;

View File

@ -1,5 +1,3 @@
import GoogleMap from './google_map';
export * from './lib';
export default GoogleMap;