Merge remote-tracking branch 'gilmarsquinelato/navigation' into pr/41-gilmarsquinelato-navigation
This commit is contained in:
commit
a5fd47fa8a
|
@ -21,7 +21,7 @@ public class MainApplication extends Application implements ReactApplication {
|
|||
|
||||
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
|
||||
@Override
|
||||
protected boolean getUseDeveloperSupport() {
|
||||
public boolean getUseDeveloperSupport() {
|
||||
return BuildConfig.DEBUG;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import { StackNavigator, DrawerNavigator } from 'react-navigation';
|
||||
import { Platform } from 'react-native';
|
||||
|
||||
|
|
|
@ -26,6 +26,6 @@ const get = function* get({ data }) {
|
|||
}
|
||||
};
|
||||
const getData = function* getData() {
|
||||
yield takeEvery(get, CREATE_CHANNEL.REQUEST);
|
||||
yield takeEvery(CREATE_CHANNEL.REQUEST, get);
|
||||
};
|
||||
export default getData;
|
||||
|
|
Loading…
Reference in New Issue