chore: add basic "benchmark" pkg

This commit is contained in:
2025-07-12 20:13:48 +02:00
parent 4e0730d5d6
commit cb7971814d
12 changed files with 912 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);