Search Docs
即将废弃,推荐使用 createRoot。
createRoot
用于创建自定义入口,定制运行时插件。
import { createApp } from '@modern-js/runtime';
import type { Plugin } from '@modern-js/runtime'; function createApp(options: { plugins: Plugin[] }): React.ComponentType<any>;
options
plugins
详见 bootstrap。
bootstrap