mirror of
https://github.com/status-im/react-native-config.git
synced 2025-03-01 07:20:42 +00:00
21 lines
379 B
Objective-C
21 lines
379 B
Objective-C
//
|
|
// 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
|