478b4ce44e
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import "./index.css";
|
|
import "./i18n";
|
|
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { App } from "./app";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|