Hello folks,I am trying to create the custom Persisted Store (Context
Hub) that should use cookie as storage. By default, its the local
storage. Is there any way we can modify the storage .Note: As per the
documentation, we can use either of local, session, memory, cookie
storage as the persistence. I tried giving the persistence name as
cookie in default config but this doesn't work.var defaultConfig = {
initialValues: { fullName : 'John', age : 30 }, persistence : { name :
'cookie' }};Any sugg...