UNPKG
altiore-react
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.5.5
0.5.3
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.1.0
Altiore react webpack sample for Create React App.
github.com/altiore/react-base
altiore/react-base
altiore-react
/
template
/
app
/
index.js
10 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
App
from
'./App'
;
import
'./index.css'
;
ReactDOM
.
render
(
<
App
/>
,
document
.
getElementById
(
'root'
) );