react-native-macos/Libraries/Sample/Sample.ios.js

28 строки
516 B
JavaScript
Исходник Обычный вид История

2015-03-28 18:50:31 +03:00
/**
* 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.
*
* Stub of Sample for Android.
*
* @format
* @flow strict-local
2015-03-28 18:50:31 +03:00
*/
2015-03-28 18:50:31 +03:00
'use strict';
const NativeSample = require('../BatchedBridge/NativeModules').Sample;
2015-03-28 18:50:31 +03:00
/**
* High-level docs for the Sample iOS API can be written here.
*/
const Sample = {
2015-03-28 18:50:31 +03:00
test: function() {
NativeSample.test();
},
2015-03-28 18:50:31 +03:00
};
module.exports = Sample;