Tips for prefetching components in React

Does anyone have any tips for prefetching components in vanilla react?

Hi @digital_cow, if you are talking about ssr, you will need to either roll your own solution for performing the rendering to a string or stream server side and then hydrating it on the client along with any requisite data needed to render the components, which is basically what frameworks like next and Gatsby do for you