@datalayer/core
Version:
[](https://datalayer.io)
13 lines (12 loc) • 378 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright (c) 2023-2025 Datalayer, Inc.
* Distributed under the terms of the Modified BSD License.
*/
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';
const rootElement = document.getElementById('root');
if (rootElement) {
createRoot(rootElement).render(_jsx(App, {}));
}