Socket
Socket
Sign inDemoInstall

react-mobile-share

Package Overview
Dependencies
0
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.8 to 1.0.9

2

package.json
{
"name": "react-mobile-share",
"version": "1.0.8",
"version": "1.0.9",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,1 +0,56 @@

# react-mobile-share
# React-Mobile-Share
Provides an easy and simple way to share data (such as text, url and media) via mobile’s build-in share module.
## 🔧 Installation
```bash
npm i react-mobile-share # npm
yarn add react-mobile-share # yarn
```
## Preview
### Mobile
![1660745435905.JPEG](README%20md%206a99d203d22b4251a55f21e69d585cc2/1660745435905.jpeg)
Mobile Preview
## 📦 Usage
```tsx
import React from "react";
import { shareOnMobile } from 'react-mobile-share';
const imgBase64 = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2..."
const App = () =>{
return (
<div>
<button
onClick={() =>
shareOnMobile({
text: "Hey checkout our package react-mobile-share",
url: "https://www.npmjs.com/package/react-mobile-share",
title: "React-Mobile-Share",
image : imgBase64,
})
}
>
Share{" "}
</button>
</div>
);
}
export default App;
```
## 👀 Props
## 📜 License
MIT © encoresky
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc