Using state variables in diffrent pages

Hey @tomer_erez-ketzev

To keep the state across multiple pages, you can

  1. Store it in a local storage and access it via globalThis.localStorage in dynamic expression as suggested in the other post
  2. or You can pass it in the query params while navigating from one page to another page.

Thanks