I would like to use react-native-share in a react native project with EXPO. I get this error when starting the application!
const myCustomShare = () => {
const options = {
message: "some words"
}
Share.open(options)
.then(res =>console.log(res))
.catch(err =>console.log(err));
};