Skip to content

Commit 936dc13

Browse files
committed
Merge pull request #296 from jbovenschen/patch-1
Use const instead of let
2 parents fa749db + 803010b commit 936dc13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Provider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default class Provider extends Component {
3232
}
3333

3434
render() {
35-
let { children } = this.props
35+
const { children } = this.props
3636
return Children.only(children)
3737
}
3838
}

0 commit comments

Comments
 (0)