mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 07:23:51 +01:00
10 lines
261 B
TypeScript
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);
|