amis-rpc-design/libs/amis/packages/amis-editor/index.tsx
2023-10-07 19:42:30 +08:00

13 lines
297 B
TypeScript

/**
* @file entry of this example.
* @author fex
*/
import * as React from 'react';
import {createRoot} from 'react-dom/client';
import App from './examples/App';
export function bootstrap(mountTo: HTMLElement, initalState: any) {
const root = createRoot(mountTo);
root.render(<App />);
}