示例

<button onClick={() => import('./AnotherLazyComponent')
 .then((module) => {
   const AnotherLazyComponent = module.AnotherLazyComponent;
   setComponent(<AnotherLazyComponent />);
 })}>
 加载另一个懒加载组件
</button>
<div>
 {component}
</div>