Hey everyone, I have a server-side rendered page where the user needs to select some options before proceeding to the order page. I’m wondering if there’s a way to share everything the user has selected and make a request on the order page to calculate the total amount.
For example: I select option A and proceed to the order page. On the order page, I need to calculate the total for A (and potentially for B, C, or D if there are other selections).
How can I achieve this? The only solution I can think of is making the page client-side and using state management like Redux or another approach