mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
680fb50040
Reviewed By: hramos, yungsters Differential Revision: D7962391 fbshipit-source-id: 958a24e1cb190fc7c4ee0ba058ba88f03cc1a13b
28 lines
480 B
JavaScript
28 lines
480 B
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const NativeSample = require('NativeModules').Sample;
|
|
|
|
/**
|
|
* High-level docs for the Sample iOS API can be written here.
|
|
*/
|
|
|
|
const Sample = {
|
|
test: function() {
|
|
NativeSample.test();
|
|
},
|
|
};
|
|
|
|
module.exports = Sample;
|