I am using lazy loading in React, when lazy load starts, along with loading spinner that is used inside Suspense, I also need to keep the old UI in place and update the UI when the loading is done.
Right now I am losing the old UI but able to see the loading spinner, I need both old UI and loading spinner to show. How to achieve this in React functional approach or Hooks.