refactor(benchmark): use react-router instead of just vite

This commit is contained in:
2025-07-14 21:39:50 +02:00
parent f52f7312a4
commit 9d175e31e8
13 changed files with 781 additions and 170 deletions

View File

@@ -0,0 +1,15 @@
import { Outlet, Scripts } from "react-router";
export default function App() {
return (
<html lang="en">
<head>
<title>pow-captcha Benchmark</title>
</head>
<body>
<Outlet />
<Scripts />
</body>
</html>
);
}