/ concept-collection / commonview
Sign in
concept-collection / commonview
commonview / src / main.tsx
9 lines · 200 BCodeBlameHistory
4a0be26Initial commit: P2P counter app (nostr discovery + WebRTC mesh)Jeremy Magland 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