react-native-simple-share
Version:
Simple iOS share UIActivityViewController for React Native
23 lines (16 loc) • 340 B
JavaScript
/**
* @providesModule RNSimpleShare
*/
;
var React = require('react-native');
var {
NativeModules
} = React;
var SimpleShare = NativeModules.RNSimpleShare;
/**
* High-level docs for the RNSimpleShare iOS API can be written here.
*/
var RNSimpleShare = {
share: SimpleShare.share
};
module.exports = RNSimpleShare;