import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
import "./i18n";

// Set initial RTL direction
const savedLang = localStorage.getItem("app-language");
if (savedLang === "ar") {
  document.documentElement.dir = "rtl";
}

createRoot(document.getElementById("root")!).render(<App />);
