Launch directly into Worldshaper Studio

This commit is contained in:
Andraxion 2026-06-26 20:54:48 -04:00
parent b4dbd4ee8e
commit 932a638daf
3 changed files with 337 additions and 2 deletions

View file

@ -1,10 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import WorldshaperLauncher from './WorldshaperLauncher.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<WorldshaperLauncher />
</StrictMode>,
)