2015-03-28 15:50:31 +00:00
|
|
|
/**
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
const Sample = {
|
2015-03-28 15:50:31 +00:00
|
|
|
test: function() {
|
|
|
|
NativeSample.test();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Sample;
|