A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1import { createRoot } from "react-dom/client"; 2import App from "./App.tsx"; 3import "./index.css"; 4 5createRoot(document.getElementById("root")!).render(<App />);