mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-07 14:00:40 +02:00
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
import App from "./App";
|
|
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
// Importing the Bootstrap CSS
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
|
|
// Render the App component into the #root div
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
);
|