UNPKG
jsoneditor
Version:
latest (10.2.0)
10.2.0
10.1.3
10.1.2
10.1.1
10.1.0
10.0.3
10.0.2
10.0.1
10.0.0
9.10.5
9.10.4
9.10.3
9.10.2
9.10.1
9.10.0
9.9.2
9.9.1
9.9.0
9.8.0
9.7.4
9.7.3
9.7.2
9.7.1
9.7.0
9.6.0
9.5.11
9.5.10
9.5.9
9.5.8
9.5.7
9.5.6
9.5.5
9.5.4
9.5.3
9.5.2
9.5.1
9.5.0
9.4.2
9.4.1
9.4.0
9.3.1
9.3.0
9.2.0
9.1.10
9.1.9
9.1.8
9.1.7
9.1.6
9.1.5
9.1.4
9.1.3
9.1.2
9.1.1
9.1.0
9.0.5
9.0.4
9.0.3
9.0.2
9.0.1
9.0.0
8.6.8
8.6.7
8.6.6
8.6.5
8.6.4
8.6.3
8.6.2
8.6.1
8.6.0
8.5.3
8.5.2
8.5.1
8.5.0
8.4.1
8.4.0
8.3.0
8.2.1
8.2.0
8.1.2
8.1.1
8.1.0
8.0.0
7.5.0
7.4.0
7.3.1
7.3.0
7.2.1
7.2.0
7.1.0
7.0.5
7.0.4
7.0.3
7.0.2
7.0.1
7.0.0
6.4.1
6.4.0
6.3.0
6.2.1
6.2.0
6.1.0
6.0.0
5.34.0
5.33.0
5.32.5
5.32.4
5.32.3
5.32.2
5.32.1
5.32.0
5.31.1
5.31.0
5.30.0
5.29.1
5.29.0
5.28.2
5.28.1
5.28.0
5.27.1
5.27.0
5.26.3
5.26.2
5.26.1
5.26.0
5.25.0
5.24.7
5.24.6
5.24.5
5.24.4
5.24.3
5.24.2
5.24.1
5.24.0
5.23.1
5.23.0
5.22.0
5.21.0
5.20.0
5.19.2
5.19.1
5.19.0
5.18.0
5.17.1
5.17.0
5.16.0
5.15.0
5.14.1
5.14.0
5.13.3
5.13.2
5.13.1
5.13.0
5.12.0
5.11.0
5.10.1
5.10.0
5.9.6
5.9.5
5.9.4
5.9.3
5.9.2
5.9.1
5.9.0
5.8.2
5.8.1
5.8.0
5.7.2
5.7.1
5.7.0
5.6.0
5.5.11
5.5.10
5.5.9
5.5.8
5.5.7
5.5.6
5.5.5
5.5.4
5.5.3
5.5.2
5.5.1
5.5.0
5.4.0
5.3.0
5.2.0
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
5.0.1
5.0.0
4.2.1
4.2.0
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
3.2.0
3.1.2
3.1.1
3.1.0
3.0.0
2.3.6
2.3.5
2.3.3
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
A web-based tool to view, edit, format, and validate JSON
jsoneditoronline.org
josdejong/jsoneditor
jsoneditor
/
examples
/
react_demo
/
src
/
index.js
10 lines
(7 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./App'
import
'./index.css'
const
container =
document
.
getElementById
(
'root'
)
const
root =
createRoot
(container) root.
render
(
<
App
/>
);