Skip to content

Commit

Permalink
Remove useless wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Cédric Delpoux committed Nov 3, 2017
1 parent 5bc6379 commit 133f3b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 4.1.0 - 2017-11-03
* Removed: Useless wrapper


# 4.0.1 - 2017-10-26
* Addeded: Tests
* Added: Tests

# 4.0.0 - 2017-10-25
* Updated: Tranform Hight Order Component to React Component using a render prop
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-google-maps-loader",
"version": "4.0.1",
"version": "4.1.0",
"author": {
"name": "Cédric Delpoux",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class GoogleMapsLoader extends React.Component {
render() {
const {googleMaps} = this.state
const {render} = this.props
return <div>{render(googleMaps)}</div>
return render(googleMaps)
}
}

Expand Down

0 comments on commit 133f3b0

Please sign in to comment.