Repository URL to install this package:
|
Version:
0.7.15 ▾
|
import React from 'react'
import { createRoot } from 'react-dom/client'
import { App } from './App'
import './styles/index.css'
try {
const theme = new URL(window.location.href).searchParams.get('theme')
if (theme) document.documentElement.setAttribute('data-theme', theme)
} catch {}
const root = createRoot(document.getElementById('root')!)
root.render(<App />)