beta-real-debrid-downloader/src/renderer/main.tsx

16 lines
334 B
TypeScript

import React from "react";
import { createRoot } from "react-dom/client";
import { App } from "./App";
import "./styles.css";
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Root element fehlt");
}
createRoot(rootElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
);