import { ClientSDK } from '@csm-sdk/client';
const csm = new ClientSDK({
clientKey: "YOUR_CLIENT_KEY"
})
csm.buildChat({
user: null,
config: {
type: "floating",
}
})
import { ClientSDK } from '@csm-sdk/client';
const csm = new ClientSDK({
clientKey: "YOUR_CLIENT_KEY"
})
csm.buildChat({
user: null,
config: {
type: "container",
containerId: "chat-container",
containerStyle: 'width:100%;height:800px'
}
})