Files
yaak-mountain-loop/src-web/main.tsx
2023-03-13 09:24:38 -07:00

10 lines
261 B
TypeScript

import { render } from 'preact';
import { App } from './App';
import { setAppearance } from './lib/theme/window';
import './main.css';
setAppearance();
// root holds our app's root DOM Element:
render(<App />, document.getElementById('root') as HTMLElement);