Skip to content

Commit 133f3b0

Browse files
author
Cédric Delpoux
committed
Remove useless wrapper
1 parent 5bc6379 commit 133f3b0

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
# 4.1.0 - 2017-11-03
2+
* Removed: Useless wrapper
3+
4+
15
# 4.0.1 - 2017-10-26
2-
* Addeded: Tests
6+
* Added: Tests
37

48
# 4.0.0 - 2017-10-25
59
* Updated: Tranform Hight Order Component to React Component using a render prop

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-google-maps-loader",
3-
"version": "4.0.1",
3+
"version": "4.1.0",
44
"author": {
55
"name": "Cédric Delpoux",
66
"email": "xuopled@gmail.com"

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class GoogleMapsLoader extends React.Component {
2020
render() {
2121
const {googleMaps} = this.state
2222
const {render} = this.props
23-
return <div>{render(googleMaps)}</div>
23+
return render(googleMaps)
2424
}
2525
}
2626

0 commit comments

Comments
 (0)