import React from "react";
import { hydrateRoot } from "react-dom/client";
import { App } from "./app.jsx";
import "./styles.css";

hydrateRoot(
  document.getElementById("root"),
  <App initialPathname={window.location.pathname} />,
);
