/ concept-collection / mesh-converter
Sign in
concept-collection / mesh-converter
mesh-converter / src / main.tsx
10 lines · 230 BCodeBlameHistory
edd4e73Mesh converter: upload, view, and export meshes across formatsJeremy Magland 1import { StrictMode } from 'react'
2import { createRoot } from 'react-dom/client'
3import './index.css'
4import App from './App.tsx'
6createRoot(document.getElementById('root')!).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
moveopenescclose