src/index.tsx hinzugefügt

This commit is contained in:
ds
2026-06-28 18:28:20 +00:00
parent 62453bc65f
commit 1260c0794b
+11
View File
@@ -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(<LogsPage />);
}