
#import "RNReactNativeIterablePush.h"
#import <React/RCTLog.h>

@implementation RNReactNativeIterablePush

- (dispatch_queue_t)methodQueue
{
    return dispatch_get_main_queue();
}
RCT_EXPORT_MODULE()

RCT_EXPORT_METHOD(show:(NSString *)email)
{
  RCTLogInfo(@"Patrick says going to pass in the email here", email);
}

@end