mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-22 09:10:01 +02:00
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import App from './App';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
// Importing the Bootstrap CSS
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
// Render the App component into the #root div
|
|
const container = document.getElementById('root');
|
|
const root = createRoot(container);
|
|
root.render(<App />);
|