forked from adrianha/react-native-freshchat-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·18 lines (17 loc) · 794 Bytes
/
index.js
File metadata and controls
executable file
·18 lines (17 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import FreshchatConfig from './components/freshchatConfig';
import FaqOptions from './components/faqOptions';
import ConversationOptions from './components/conversationOptions';
import FreshchatUser from './components/freshchatUser';
import FreshchatMessage from './components/freshchatMessage';
import FreshchatNotificationConfig from './components/freshchatNotificationConfig';
import FreshchatJSWrapper from './components/freshchatJSWrapper';
module.exports = {
Freshchat: FreshchatJSWrapper,
FreshchatConfig: FreshchatConfig,
FaqOptions: FaqOptions,
ConversationOptions: ConversationOptions,
FreshchatUser: FreshchatUser,
FreshchatMessage: FreshchatMessage,
FreshchatNotificationConfig: FreshchatNotificationConfig
};