UNPKG
generator-oxy-gen
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Yeoman generator for Electron app with React and Rust (WASM).
generator-oxy-gen
/
generators
/
app
/
templates
/
src
/
index.js
10 lines
(6 loc)
•
200 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
'typeface-roboto'
;
import
'./index.scss'
;
ReactDOM
.
render
(
<
App
/>
,
document
.
getElementById
(
'root'
));