UNPKG
create-crack
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
CLI tool for creating crack projects
create-crack
/
template
/
template-react-web-js
/
src
/
index.jsx
9 lines
(5 loc)
•
185 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
"react"
;
import
ReactDOM
from
"react-dom/client"
;
import
App
from
"./App"
;
const
root =
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
)); root.
render
(
<
App
/>
);