Files
yaak-mountain-loop/src-web/main.tsx
Gregory Schier 59f1d11e40 Move stuff around
2023-03-13 23:30:14 -07:00

10 lines
300 B
TypeScript

import ReactDOM from 'react-dom/client';
import { App } from './components/App';
import { setAppearance } from './lib/theme/window';
import './main.css';
setAppearance();
// root holds our app's root DOM Element:
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />);