This commit is contained in:
2025-03-24 14:34:06 +08:00
parent 2216a3fd14
commit a5c4ef3a8f
8 changed files with 1119 additions and 117 deletions

View File

@ -2,9 +2,11 @@ import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import { Leva } from 'leva'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<Leva />
<App />
</StrictMode>,
)