mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
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
|