Files
ca-lose/frontend/src/main.tsx
Theis c985a20207 feat: enhance MainForm layout and user experience; add new components and improve form structure
feat: update i18n configuration to prioritize browser language; enhance language detection
feat: add new translation keys for form submission feedback in English and German
2026-01-20 19:07:03 +01:00

12 lines
257 B
TypeScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import "./utils/i18n";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);