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