UNPKG

@hellotext/hellotext

Version:
19 lines (13 loc) 710 B
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' const 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