Simple example of react dev container

This commit is contained in:
Mike Conrad
2025-06-08 11:45:19 -04:00
parent b1a5fff476
commit a406b8b11d
20 changed files with 2509 additions and 0 deletions

View File

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