init: inital commit

This commit is contained in:
2025-02-20 12:39:27 +01:00
commit 3c77360c9d
38 changed files with 8525 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
import { createRoot } from "react-dom/client";
import { Info } from "./Info";
const root = createRoot(document.getElementById("root")!);
root.render(<Info />);