mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e1cfeaddd4
Summary: Changelog: [General] [Fixed] - License header cleanup Reviewed By: cpojer Differential Revision: D17749100 fbshipit-source-id: edca9c73a065e9fc311109cd6efeb1f75451a55a
28 lines
514 B
JavaScript
28 lines
514 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
// Stub of Sample for Android.
|
|
|
|
'use strict';
|
|
|
|
const NativeSample = require('../BatchedBridge/NativeModules').Sample;
|
|
|
|
/**
|
|
* High-level docs for the Sample iOS API can be written here.
|
|
*/
|
|
|
|
const Sample = {
|
|
test: function() {
|
|
NativeSample.test();
|
|
},
|
|
};
|
|
|
|
module.exports = Sample;
|