@sunrise-integration/attentive-sms
v1.0.4
Published
Attentive Mobile integration for Shogun Frontend.
Downloads
7
Keywords
Readme
Attentive SMS
Attentive Mobile integration for Shogun Frontend.
Personalized Mobile Messaging for Innovative Businesses
Installation
yarn add @frontend-sdk/attentive-sms
npm install @frontend-sdk/attentive-sms
Usage
First we need to install the Attentive SMS script - we need to make a call to useAttentiveSms passing you Custom Attentive Domain
import {useAttentiveSms} from '@frontend-sdk/attentive-sms'
const App = () => {
let attentiveDomain = 'EXAMPLE';
useAttentiveSms(attentiveDomain);
return <div>...</div>
}