mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-03-28 17:43:05 +01:00
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import { App } from './App';
|
|
import './index.css';
|
|
import './themes.css';
|
|
import './styles.css';
|
|
import { getSavedTheme, applyTheme } from './utils/theme';
|
|
|
|
// Apply saved theme before first render
|
|
applyTheme(getSavedTheme());
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|