react-threejs-example/src/main.tsx
2025-04-12 04:03:35 +09:00

10 lines
252 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import { AppSwitch } from './AppSwitch.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<AppSwitch />
</StrictMode>,
)