How to make data / state available throughout several Plasmic pages (codegen)?

I’m using codegen and I have data I want available throughout several of my plasmic pages. What’s an ideal way to store and retrieve that? Browser localStorage()? For example, the user can select a start/end date range for filtering results, and that filter is relevant across multiple pages.

It really just depends on your app. You can use local storage if you want it to be persistent across reloads. If not, you can also use react context or even a global variable. (Basically however you might approach it independently of using Plasmic to create the designs)