From 1260c0794b8be87300514f85312df5bb7193a0cf Mon Sep 17 00:00:00 2001 From: ds Date: Sun, 28 Jun 2026 18:28:20 +0000 Subject: [PATCH] =?UTF-8?q?src/index.tsx=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/index.tsx diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..378c63b --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,11 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import LogsPage from "./LogsPage"; + +// Headlamp plugin entry +export default function init() { + const root = document.createElement("div"); + document.body.appendChild(root); + + ReactDOM.createRoot(root).render(); +} \ No newline at end of file