state.js 269 B

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