feat: update i18n configuration to prioritize browser language; enhance language detection feat: add new translation keys for form submission feedback in English and German
12 lines
257 B
TypeScript
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>
|
|
);
|