state.js 311 B

1234567891011
  1. // Deep copy to not mutate it with the store (default state is needed when reloading after a refresh)
  2. export default () => JSON.parse(JSON.stringify({
  3. uuid: null,
  4. userId: null,
  5. experimentId: null,
  6. gdprConsent: false,
  7. hostConfig: null,
  8. scenesList: null,
  9. progression: {},
  10. customLinkData: null
  11. }))