//
//  IOSNotification.h
//  rainbow
//
//  Created by Doha Tubaileh on 10/31/19.
//  Copyright © 2019 Facebook. All rights reserved.
//

#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

@interface IOSNotification : NSObject
+(id)sharedManager;
+(void)sendUserNotification:(NSString*)title notificationBody:(NSString*)msg iconBadgeNumber:(NSInteger)number;
@end

