import React from 'react'; import { loadRemote, registerRemotes } from '@modern-js/runtime/mf'; registerRemotes([ { name: 'dynamic_nested_remote', entry: 'http://localhost:3054/mf-manifest.json', }, ]); const DynamicNestedRemote = React.lazy(() => loadRemote('dynamic_nested_remote/Content').then((m) => { return m; }), ); const Index = (): JSX.Element => { return (
| Desc | Host component | Remote component | |
| ✅ | This component is from a dynamic remote(localhost:3054) which nest a dynamic remote |
|