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

19 lines
255 B
JavaScript
Raw Normal View History

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