2
0
mirror of https://github.com/status-im/react-native.git synced 2025-02-16 03:16:26 +00:00

20 lines
277 B
JavaScript
Raw Normal View History

2015-03-28 15:50:31 +00: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;