state.js 250 B

123456789101112
  1. export const defaultState = {
  2. hostConfig: {
  3. protocol: null,
  4. host: null,
  5. port: null
  6. },
  7. scenesList: null,
  8. count: 0
  9. }
  10. // Deep copy defaultState to not modify it with the store
  11. export default JSON.parse(JSON.stringify(defaultState))