SparkSplat-Viewer / app /src /main.tsx
Jeprary
Initial commit: SparkSplat with proper UTF-8 LFS
1829efb
Raw
History Blame Contribute Delete
375 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { Theme } from '@radix-ui/themes'
import { App } from './App'
import '@radix-ui/themes/styles.css'
import './index.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<Theme appearance="dark" hasBackground={false}>
<App />
</Theme>
</StrictMode>,
)