Files
memind/src/main.tsx
T
john 3e6b0c262a
Memind CI / Test, build, and release guards (push) Successful in 4m31s
feat(portal): add light/dark theme sync and OA drive navigation
Unify chat and OA drive appearance with shared memind-theme storage, default light mode, and cross-frame sync so users can switch themes from chat or the drive shell.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-10 20:10:06 +08:00

17 lines
385 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { BrowserRouter } from 'react-router-dom';
import { App } from './App';
import { initTheme } from './utils/theme';
import './index.css';
initTheme();
createRoot(document.getElementById('root')!).render(
<StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</StrictMode>,
);