Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 648 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 648 Bytes

rn-thub-share-module

Share Module

Installation

npm install rn-thub-share-module

Usage

import RnThubShareModule from 'rn-thub-share-module';

RnThubImageLabelling.shareText(
  texttobeshared,
  (data) => {
    console.log(data);
  },
  (errorMessage) => {
    console.log(errorMessage);
  }
);

RnThubImageLabelling.shareImage(
  imageUrl,
  imageExtension,
  (data) => {
    console.log(data);
  },
  (errorMessage) => {
    console.log(errorMessage);
  }
);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT