mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
15 lines
197 B
JavaScript
15 lines
197 B
JavaScript
/* eslint no-console: 0 */
|
|
/* eslint no-param-reassign: 0 */
|
|
|
|
// const chatType = 'all';
|
|
// initial state
|
|
const state = {};
|
|
|
|
// actions
|
|
const actions = {};
|
|
|
|
export default {
|
|
state,
|
|
actions,
|
|
};
|