/ concept-collection / commonview
Sign in
concept-collection / commonview
commonview / src / main.tsx
9 lines · 200 BBlameHistoryRaw
1import {StrictMode} from 'react'
2import {createRoot} from 'react-dom/client'
3import App from './App'
5createRoot(document.getElementById('root')!).render(
6 <StrictMode>
7 <App />
8 </StrictMode>
9)
moveopenescclose