What is the best way to "nest" react apps? I know you can't directly nest them since it's only possible to have one package.json in the hierarchy. Using an iframe will of course work but is undesirable. Is there a way to run app 2 "separately" but still have it be shown within app 1? Or can you turn app 2(App.js) into a component and go the whole compile/transpile, bundle, npm route? And then have it running on app 1's instance of react? Or would it be too complex to turn an app into a component because of all dependencies?
Would be great to get some input and hear possible solutions from you clever people.