Skip to content Skip to sidebar Skip to footer

Components After React Suspense Not Loading?

I had to break up some of my routes with suspense and react.lazy to ensure that my bundle file wasn't ridiculous. But after doing so, the routes after my first suspense bracket are

Solution 1:

It had to do with my React-Router. The documentation and sources I was reviewing for it said that the routes could be in the normal route tree, turned out that wasn't the case. Suspense had to be outside the Statement for react-router. After wrapping every route outside the switch statement, it worked properly.


Post a Comment for "Components After React Suspense Not Loading?"