mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 15:01:34 +08:00
Re-applies changes from #9471 that were overwritten by the i18n PR: - URL-based routing via react-router-dom (NavLink, Routes, BrowserRouter) - Replace emoji icons with lucide-react in ConfigPage and SkillsPage - Sidebar layout for ConfigPage, SkillsPage, and LogsPage - Custom dropdown Select component (SelectOption) in CronPage - Remove all non-functional rounded borders across the UI - Fixed header with proper content offset Made-with: Cursor
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import "./index.css";
|
|
import App from "./App";
|
|
import { I18nProvider } from "./i18n";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<BrowserRouter>
|
|
<I18nProvider>
|
|
<App />
|
|
</I18nProvider>
|
|
</BrowserRouter>,
|
|
);
|