/* * This file is imported as the entrypoint for the Module Federation or UMD bundle. * Exporting an async function as the project's entrypoint enables Module Federation Plugin to resolve the dependency tree * before the dependencies are actually used, which enables dependency sharing between modules */ export default props => { import('./bootstrap').then(({ default: bootstrap }) => bootstrap(props)) }