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