It is used to render project components.
import { render } from '@modern-js/runtime/browser';
render(<ModernRoot />);export function render(App: React.ReactElement, id?: HTMLElement | string): Promise<any>;App:An instance of ReactElement created through createRoot.id:The id of the DOM root element to be mounted, such as "root".import { createRoot } from '@modern-js/runtime/react';
import { render } from '@modern-js/runtime/browser';
const ModernRoot = createRoot();
async function beforeRender() {
// todo
}
beforeRender().then(() => {
render(<ModernRoot />);
});