Worldshaper/src/main.tsx

11 lines
278 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'
import WorldshaperLauncher from './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>,
)