import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import App from './App.tsx' let body: any = document.querySelector("body"); body.className = "theme theme-light"; createRoot(document.getElementById('root')!).render( , )