2015-03-28 15:50:31 +00:00
|
|
|
/**
|
2018-05-11 19:43:48 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*
|
|
|
|
* Stub of Sample for Android.
|
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2018-08-09 15:32:04 +00:00
|
|
|
* @flow strict-local
|
2015-03-28 15:50:31 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2015-03-28 15:50:31 +00:00
|
|
|
'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();
|
2018-05-11 02:06:46 +00:00
|
|
|
},
|
2015-03-28 15:50:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Sample;
|