Add Facebook Customer Chat for the blogging system

This commit is contained in:
txs
2022-04-06 04:37:09 +08:00
parent 6de1102bfb
commit 357f7dc246
4 changed files with 47 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
import BLOG from '@/blog.config'
import MessengerCustomerChat from 'react-messenger-customer-chat'
const Messenger = () => (
<MessengerCustomerChat
pageId={BLOG.FACEBOOK_PAGE_ID}
appId={BLOG.FACEBOOK_APP_ID}
language={BLOG.LANG.replace('-', '_')}
/>
)
export default Messenger