mirror of
https://github.com/status-im/react-native.git
synced 2025-02-12 01:16:46 +00:00
Reviewed By: sahrens Differential Revision: D7961488 fbshipit-source-id: 05f9b8b0b91ae77f9040a5321ccc18f7c3c1ce9a
21 lines
268 B
JavaScript
21 lines
268 B
JavaScript
/**
|
|
* @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;
|