Push Notifications to Shopify and your native app, through our Passwordless Login App using this example React Native codebase, no native modules to link & Expo friendly!
$ yarn add shopify-push-notifications
const { token, message } = push('YOUR-STORE.myshopify.com, 'YOUR-SECRET')
let res = await token('exponentpushtoken[xxxxxxxxxxxxxxxxxxxxxx]')
if (!res.success) console.warn(res.error)
// web or expo token saved
res = await message('TITLE', 'Message body...', {withJSON: 'Optional data'})
if (!res.success) console.warn(res.error)
// message broadcasted!