refactor(benchmark): use react-router instead of just vite
This commit is contained in:
15
pkgs/benchmark/app/root.tsx
Normal file
15
pkgs/benchmark/app/root.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user