UNPKG

react-cms-data-view

Version:
17 lines (12 loc) 322 B
import { CREATE } from '../constants/message-constants'; export default class MessageActions { constructor(store) { this.dispatcher = store.getDispatcher(); } create(newContent) { this.dispatcher.dispatch({ type: CREATE, content: newContent }); } }