@hellotext/hellotext
Version:
Hellotext JavaScript Client
13 lines • 715 B
JavaScript
import { Application } from '@hotwired/stimulus';
import Hellotext from './hellotext';
import FormController from './controllers/form_controller';
import MessageController from './controllers/message_controller';
import WebChatEmojiController from './controllers/webchat/emoji_picker_controller';
import WebchatController from './controllers/webchat_controller';
var application = Application.start();
application.register('hellotext--form', FormController);
application.register('hellotext--webchat', WebchatController);
application.register('hellotext--webchat--emoji', WebChatEmojiController);
application.register('hellotext--message', MessageController);
window.Hellotext = Hellotext;
export default Hellotext;