mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import './ui.css'
|
|
import App from './App.tsx'
|
|
import { applyAppearanceFromStorage } from './appearance'
|
|
|
|
applyAppearanceFromStorage()
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
)
|