react-native-macos/Libraries/Sample/Sample.ios.js

20 строки
277 B
JavaScript
Исходник Обычный вид История

2015-03-28 18:50:31 +03:00
/**
* @providesModule Sample
* @flow
*/
'use strict';
var NativeSample = require('NativeModules').Sample;
/**
* High-level docs for the Sample iOS API can be written here.
*/
var Sample = {
test: function() {
NativeSample.test();
}
};
module.exports = Sample;