UNPKG

react-native-message-compose

Version:

React Native library for composing Message / SMS / Text. Wraps MFMessageComposeViewController for iOS and Intent for Android.

12 lines (11 loc) 161 B
export default ({ recipients, body, subject, attachments, }) => ({ address: recipients.join(';'), body, subject, attachment: attachments[0], });