When using NgRx across Micro Frontends, the state resets on page reload because it's stored in memory.✅ To persist the state across reloads, we’ll use localStorage with NgRx MetaReducers.
📌 Step 1: Create a MetaReducer to Sync State with localStora...