Files
pow-captcha/pkgs/benchmark/app/root.tsx

16 lines
240 B
TypeScript

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>
);
}