UNPKG
realtimecursor
Version:
latest (1.0.0)
1.0.0
Real-time collaboration system with cursor tracking and approval workflow
realtimecursor
/
react-example
/
src
/
main.jsx
10 lines
(9 loc)
•
234 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
import
ReactDOM
from
'react-dom/client'
import
App
from
'./App.jsx'
import
'./index.css'
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
<
React.StrictMode
>
<
App
/>
</
React.StrictMode
>
, )