2026-06-26 18:18:14 -04:00
|
|
|
import { StrictMode } from 'react'
|
|
|
|
|
import { createRoot } from 'react-dom/client'
|
|
|
|
|
import './index.css'
|
2026-06-26 20:54:48 -04:00
|
|
|
import WorldshaperLauncher from './WorldshaperLauncher.tsx'
|
2026-06-26 18:18:14 -04:00
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
|
|
|
<StrictMode>
|
2026-06-26 20:54:48 -04:00
|
|
|
<WorldshaperLauncher />
|
2026-06-26 18:18:14 -04:00
|
|
|
</StrictMode>,
|
|
|
|
|
)
|