How to execute a long running process in the background without it blocking the rest of the React app?
I have a React app that must execute a long running process when a certain page is loaded. This process is currently blocking the page from being rendered while it is running.
How to execute a long running process in the background without it blocking the rest of the React app?
I have a React app that must execute a long running process when a certain page is loaded. This process is currently blocking the page from being rendered while it is running.