Worldshaper/src/main.tsx

11 lines
287 B
TypeScript
Raw Normal View History

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