fix: typo pops = props (#197)

This commit is contained in:
Ferran Negre
2019-10-23 23:00:23 +02:00
committed by Krzysztof Magiera
parent 7d4bbb8f88
commit b622abc935

View File

@@ -20,7 +20,7 @@ import {
function renderComponentOrThunk(componentOrThunk, props) {
if (typeof componentOrThunk === 'function') {
return componentOrThunk(pops);
return componentOrThunk(props);
}
return componentOrThunk;
}