Files
react-native/Libraries/Sample/Sample.ios.js
T
Andres Suarez e1cfeaddd4 Move non-license comments out of license header
Summary: Changelog: [General] [Fixed] - License header cleanup

Reviewed By: cpojer

Differential Revision: D17749100

fbshipit-source-id: edca9c73a065e9fc311109cd6efeb1f75451a55a
2019-10-15 20:12:12 -07:00

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;