Can Capacitor turn a RSC-based project (React Server Components) into an app that renders those components on the client?
Rendering the RSCs once at buildtime into static HTML and bundling this into an app wouldn’t be enough, because those RSCs may use dynamic data during their rendering. So the components should actually be rendered when they are shown on the screen in the app.
Is there a way to set that up?