react-dynamic-remote-component icon indicating copy to clipboard operation
react-dynamic-remote-component copied to clipboard

Allows you to dynamically load a component from a remote using webpack 5's module federation.

Results 1 react-dynamic-remote-component issues
Sort by recently updated
recently updated
newest added

Hi there, is there a way to pass props to the remote component, for instance: ``` //in host/src/Host.jsx function Host(){ const world = "world!"; return ; } export default Host;...