2
0
mirror of https://github.com/status-im/react-native.git synced 2025-02-18 20:36:41 +00:00
2015-05-26 18:25:00 -07:00

20 lines
277 B
JavaScript

/**
* @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;