Skip to content

Commit

Permalink
chore: Adding es6 default export e export with destructing
Browse files Browse the repository at this point in the history
  • Loading branch information
MateusAndrade committed May 27, 2019
1 parent d4a08b2 commit 018d2a3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,5 @@ class RNShare {
}
}

module.exports = RNShare;
module.exports.Overlay = Overlay;
module.exports.Sheet = Sheet;
module.exports.Button = Button;
module.exports.ShareSheet = ShareSheet;
export {Overlay, Sheet, Button, ShareSheet};
export default RNShare;

0 comments on commit 018d2a3

Please sign in to comment.