| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 6x 6x 6x 6x 6x 6x | import { render } from './messemger-renderer/render';
import CONSTANTS from './components/Messaging/constants';
const version = '0.0.1';
const Text = 'TEXT';
const Message = 'MESSAGE';
const SenderAction = 'SENDER_ACTION';
const Attachment = 'ATTACHMENT';
const QuickReply = 'QUICKREPLY';
export {
render,
Text,
Message,
SenderAction,
Attachment,
QuickReply,
CONSTANTS,
version
};
|