Loading...
- }
- if (isEmpty(todos)) {
- return
- Object.keys(todos).map((key, id) => (
-
- {todos[key].text}
- Complete: {todos[key].isComplete}
-
- ))
-
- )
- }
-
- compose(
- firebaseConnect([
- { path: 'todos' }
- ]),
- connect(({ firebase: { data: { todos } } }) => {
- todos
- })
- )(Todos)
- ```
-
-Notice how `connect` is still used to get data out of `redux` since `firebaseConnect` only loads data **into** redux.
-
-For more details, please visit [`react-redux-firebase`'s react-native section](http://docs.react-redux-firebase.com/history/v2.0.0/docs/recipes/react-native.html#native-modules).
## Standalone Integration