react-native-macos/Libraries/Sample/Sample.m

18 строки
311 B
Mathematica
Исходник Обычный вид История

// Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.
2015-03-28 18:50:31 +03:00
#import "Sample.h"
@implementation Sample
2015-05-15 15:59:46 +03:00
RCT_EXPORT_MODULE()
RCT_EXPORT_METHOD(test)
2015-03-28 18:50:31 +03:00
{
2015-05-15 15:59:46 +03:00
// Your implementation here
2015-03-28 18:50:31 +03:00
}
@end