Skip to content

Instantly share code, notes, and snippets.

@GaborWnuk
Created April 14, 2018 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GaborWnuk/38126da4f31625251e8eafc843c4b638 to your computer and use it in GitHub Desktop.
Save GaborWnuk/38126da4f31625251e8eafc843c4b638 to your computer and use it in GitHub Desktop.
FancyNativeModule.m for React Native project based on Swift
#import "FancyNativeModule.h"
@interface FancyNativeModule()
@end
@implementation FancyNativeModule
RCT_EXPORT_MODULE()
RCT_EXPORT_METHOD(saySomething:(nonnull NSString *)message) {
NSLog(@"%@", message);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment