mirror of
https://github.com/status-im/react-native-status-keycard.git
synced 2025-03-01 04:20:29 +00:00
15 lines
420 B
Mathematica
15 lines
420 B
Mathematica
|
#import "StatusKeycard.h"
|
||
|
|
||
|
|
||
|
@implementation StatusKeycard
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
RCT_EXPORT_METHOD(sampleMethod:(NSString *)stringArgument numberParameter:(nonnull NSNumber *)numberArgument callback:(RCTResponseSenderBlock)callback)
|
||
|
{
|
||
|
// TODO: Implement some actually useful functionality
|
||
|
callback(@[[NSString stringWithFormat: @"numberArgument: %@ stringArgument: %@", numberArgument, stringArgument]]);
|
||
|
}
|
||
|
|
||
|
@end
|