Merge remote-tracking branch 'gilmarsquinelato/navigation' into pr/41-gilmarsquinelato-navigation

This commit is contained in:
Guilherme Gazzo 2017-09-12 21:04:18 -03:00
commit a5fd47fa8a
No known key found for this signature in database
GPG Key ID: 1F85C9AD922D0829
3 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -1,4 +1,4 @@
import React, { Component } from 'react';
import React from 'react';
import { StackNavigator, DrawerNavigator } from 'react-navigation';
import { Platform } from 'react-native';

View File

@ -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;