21 lines
379 B
Mathematica
Raw Normal View History

2016-02-22 17:15:39 -08:00
//
// ReactNativeConfig.m
// ReactNativeConfig
//
// Created by Pedro Belo on 2/22/16.
// Copyright © 2016 Pedro Belo. All rights reserved.
//
#import "ReactNativeConfig.h"
@implementation ReactNativeConfig
RCT_EXPORT_MODULE()
- (NSDictionary *)constantsToExport {
// NSDictionary *info = [[NSBundle mainBundle] infoDictionary];
return @{@"FOO": @"BAR"};
}
@end